blob: a779ad72e1505176b5ee479491123240cc6c506e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PRINTING_BACKEND_WIN_HELPER_H_
#define PRINTING_BACKEND_WIN_HELPER_H_
#pragma once
// These are helper functions for dealing with Windows Printing.
namespace printing {
bool InitXPSModule();
} // namespace printing
#endif // PRINTING_BACKEND_WIN_HELPER_H_
|