blob: d46f26c11abc15179d3e9ba125b917ffafb22126 [file] [log] [blame]
Paul Quinnf981c6c1999-05-29 11:15:39 +00001/* Definitions for the VERsion infolibrary (VER.DLL)
Vincent BĂ©ron9a624912002-05-31 23:06:46 +00002 *
Paul Quinnf981c6c1999-05-29 11:15:39 +00003 * Copyright 1996 Marcus Meissner
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00004 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Paul Quinnf981c6c1999-05-29 11:15:39 +000018 */
19
Michael Veksler17822f41999-02-09 15:46:25 +000020#ifndef __WINE_WINVER_H
21#define __WINE_WINVER_H
22
Patrik Stridvall14da7b11999-06-12 10:53:06 +000023#ifdef __cplusplus
24extern "C" {
25#endif /* defined(__cplusplus) */
26
Paul Quinnf981c6c1999-05-29 11:15:39 +000027/* resource ids for different version infos */
Paul Quinnf981c6c1999-05-29 11:15:39 +000028#define VS_FILE_INFO 16
29#define VS_VERSION_INFO 1
Francois Gouget3e88da12000-09-29 00:22:09 +000030#define VS_USER_DEFINED 100
Paul Quinnf981c6c1999-05-29 11:15:39 +000031
32#define VS_FFI_SIGNATURE 0xfeef04bdL /* FileInfo Magic */
33#define VS_FFI_STRUCVERSION 0x00010000L /* struc version 1.0 */
34#define VS_FFI_FILEFLAGSMASK 0x0000003fL /* valid flags */
35
36/* VS_VERSION.dwFileFlags */
37#define VS_FF_DEBUG 0x01L
38#define VS_FF_PRERELEASE 0x02L
39#define VS_FF_PATCHED 0x04L
40#define VS_FF_PRIVATEBUILD 0x08L
41#define VS_FF_INFOINFERRED 0x10L
42#define VS_FF_SPECIALBUILD 0x20L
43
44/* VS_VERSION.dwFileOS */
45
46/* major os version */
47#define VOS_UNKNOWN 0x00000000L
48#define VOS_DOS 0x00010000L
49#define VOS_OS216 0x00020000L
50#define VOS_OS232 0x00030000L
51#define VOS_NT 0x00040000L
52
53/* minor os version */
54#define VOS__BASE 0x00000000L
55#define VOS__WINDOWS16 0x00000001L
56#define VOS__PM16 0x00000002L
57#define VOS__PM32 0x00000003L
58#define VOS__WINDOWS32 0x00000004L
59
60/* possible versions */
61#define VOS_DOS_WINDOWS16 (VOS_DOS|VOS__WINDOWS16)
62#define VOS_DOS_WINDOWS32 (VOS_DOS|VOS__WINDOWS32)
63#define VOS_OS216_PM16 (VOS_OS216|VOS__PM16)
64#define VOS_OS232_PM32 (VOS_OS232|VOS__PM32)
65#define VOS_NT_WINDOWS32 (VOS_NT|VOS__WINDOWS32)
66
67/* VS_VERSION.dwFileType */
68#define VFT_UNKNOWN 0x00000000L
69#define VFT_APP 0x00000001L
70#define VFT_DLL 0x00000002L
71#define VFT_DRV 0x00000003L
72#define VFT_FONT 0x00000004L
73#define VFT_VXD 0x00000005L
74/* ??one type missing?? 0x00000006L -Marcus */
75#define VFT_STATIC_LIB 0x00000007L
76
77/* VS_VERSION.dwFileSubtype for VFT_DRV */
78#define VFT2_UNKNOWN 0x00000000L
79#define VFT2_DRV_PRINTER 0x00000001L
80#define VFT2_DRV_KEYBOARD 0x00000002L
81#define VFT2_DRV_LANGUAGE 0x00000003L
82#define VFT2_DRV_DISPLAY 0x00000004L
83#define VFT2_DRV_MOUSE 0x00000005L
84#define VFT2_DRV_NETWORK 0x00000006L
85#define VFT2_DRV_SYSTEM 0x00000007L
86#define VFT2_DRV_INSTALLABLE 0x00000008L
87#define VFT2_DRV_SOUND 0x00000009L
88#define VFT2_DRV_COMM 0x0000000aL
89#define VFT2_DRV_INPUTMETHOD 0x0000000bL
90
91/* VS_VERSION.dwFileSubtype for VFT_FONT */
92#define VFT2_FONT_RASTER 0x00000001L
93#define VFT2_FONT_VECTOR 0x00000002L
94#define VFT2_FONT_TRUETYPE 0x00000003L
95
96/* VerFindFile Flags */
97 /* input */
98#define VFFF_ISSHAREDFILE 0x0001
99
100 /* output (returned) */
101#define VFF_CURNEDEST 0x0001
102#define VFF_FILEINUSE 0x0002
103#define VFF_BUFFTOOSMALL 0x0004
104
105/* VerInstallFile Flags */
106 /* input */
107#define VIFF_FORCEINSTALL 0x0001
108#define VIFF_DONTDELETEOLD 0x0002
109
110 /* output (return) */
111#define VIF_TEMPFILE 0x00000001L
112#define VIF_MISMATCH 0x00000002L
113#define VIF_SRCOLD 0x00000004L
114#define VIF_DIFFLANG 0x00000008L
115#define VIF_DIFFCODEPG 0x00000010L
116#define VIF_DIFFTYPE 0x00000020L
117#define VIF_WRITEPROT 0x00000040L
118#define VIF_FILEINUSE 0x00000080L
119#define VIF_OUTOFSPACE 0x00000100L
120#define VIF_ACCESSVIOLATION 0x00000200L
121#define VIF_SHARINGVIOLATION 0x00000400L
122#define VIF_CANNOTCREATE 0x00000800L
123#define VIF_CANNOTDELETE 0x00001000L
124#define VIF_CANNOTRENAME 0x00002000L
125#define VIF_CANNOTDELETECUR 0x00004000L
126#define VIF_OUTOFMEMORY 0x00008000L
127#define VIF_CANNOTREADSRC 0x00010000L
128#define VIF_CANNOTREADDST 0x00020000L
129#define VIF_BUFFTOOSMALL 0x00040000L
130
131typedef struct tagVS_FIXEDFILEINFO {
132 DWORD dwSignature;
133 DWORD dwStrucVersion;
134 DWORD dwFileVersionMS;
135 DWORD dwFileVersionLS;
136 DWORD dwProductVersionMS;
137 DWORD dwProductVersionLS;
138 DWORD dwFileFlagsMask;
139 DWORD dwFileFlags;
140 DWORD dwFileOS;
141 DWORD dwFileType;
142 DWORD dwFileSubtype;
143 DWORD dwFileDateMS;
144 DWORD dwFileDateLS;
145} VS_FIXEDFILEINFO;
146
147
148#ifndef RC_INVOKED
149
150/* function prototypes */
151
Alexandre Julliarda3960291999-02-26 11:11:13 +0000152DWORD WINAPI VerFindFileA(UINT,LPCSTR,LPCSTR,LPCSTR,LPSTR,UINT*,LPSTR,UINT*);
153DWORD WINAPI VerFindFileW(UINT,LPCWSTR,LPCWSTR,LPCWSTR,LPWSTR,UINT*,LPWSTR,UINT*);
Michael Veksler17822f41999-02-09 15:46:25 +0000154#define VerFindFile WINELIB_NAME_AW(VerFindFile)
Alexandre Julliarda3960291999-02-26 11:11:13 +0000155DWORD WINAPI VerInstallFileA(UINT,LPCSTR,LPCSTR,LPCSTR,LPCSTR,LPCSTR,LPSTR,UINT*);
156DWORD WINAPI VerInstallFileW(UINT,LPCWSTR,LPCWSTR,LPCWSTR,LPCWSTR,LPCWSTR,LPWSTR,UINT*);
Michael Veksler17822f41999-02-09 15:46:25 +0000157#define VerInstallFile WINELIB_NAME_AW(VerInstallFile)
Ulrich Weigand3467dab1999-09-19 12:15:58 +0000158DWORD WINAPI VerLanguageNameA(UINT,LPSTR,UINT);
159DWORD WINAPI VerLanguageNameW(UINT,LPWSTR,UINT);
160#define VerLanguageName WINELIB_NAME_AW(VerLanguageName)
Alexandre Julliarda3960291999-02-26 11:11:13 +0000161DWORD WINAPI VerQueryValueA(LPVOID,LPCSTR,LPVOID*,UINT*);
162DWORD WINAPI VerQueryValueW(LPVOID,LPCWSTR,LPVOID*,UINT*);
Michael Veksler17822f41999-02-09 15:46:25 +0000163#define VerQueryValue WINELIB_NAME_AW(VerQueryValue)
Alexandre Julliarda3960291999-02-26 11:11:13 +0000164DWORD WINAPI GetFileVersionInfoSizeA(LPCSTR,LPDWORD);
165DWORD WINAPI GetFileVersionInfoSizeW(LPCWSTR,LPDWORD);
Michael Veksler17822f41999-02-09 15:46:25 +0000166#define GetFileVersionInfoSize WINELIB_NAME_AW(GetFileVersionInfoSize)
Dmitry Timoshkov07b6e6e2001-03-16 16:42:20 +0000167BOOL WINAPI GetFileVersionInfoA(LPCSTR,DWORD,DWORD,LPVOID);
168BOOL WINAPI GetFileVersionInfoW(LPCWSTR,DWORD,DWORD,LPVOID);
Michael Veksler17822f41999-02-09 15:46:25 +0000169#define GetFileVersionInfo WINELIB_NAME_AW(GetFileVersionInfo)
170
Paul Quinnf981c6c1999-05-29 11:15:39 +0000171/* 20 GETFILEVERSIONINFORAW */
172
Paul Quinnf981c6c1999-05-29 11:15:39 +0000173#endif /* RC_INVOKED */
174
Patrik Stridvall14da7b11999-06-12 10:53:06 +0000175#ifdef __cplusplus
176} /* extern "C" */
177#endif /* defined(__cplusplus) */
178
Michael Veksler17822f41999-02-09 15:46:25 +0000179#endif /* __WINE_WINVER_H */