OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #ifndef _FX_SYSTEM | 7 #ifndef _FX_SYSTEM |
8 #define _FX_SYSTEM | 8 #define _FX_SYSTEM |
9 #ifdef __cplusplus | 9 #ifdef __cplusplus |
10 extern "C" { | 10 extern "C" { |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 typedef struct _FX_VERSION { | 56 typedef struct _FX_VERSION { |
57 FX_DWORD dwMajorVersion; | 57 FX_DWORD dwMajorVersion; |
58 FX_DWORD dwMinorVersion; | 58 FX_DWORD dwMinorVersion; |
59 FX_DWORD dwBuildVersion; | 59 FX_DWORD dwBuildVersion; |
60 } FX_VERSION, *FX_LPVERSION; | 60 } FX_VERSION, *FX_LPVERSION; |
61 typedef FX_VERSION const* FX_LPCVERSION; | 61 typedef FX_VERSION const* FX_LPCVERSION; |
62 #ifdef __cplusplus | 62 #ifdef __cplusplus |
63 }; | 63 }; |
64 #endif | 64 #endif |
65 #endif | 65 #endif |
OLD | NEW |