Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
c84b7d33
Commit
c84b7d33
authored
13 years ago
by
Francois Gouget
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
version: Add some macros and prototypes to winver.h.
parent
7eefed14
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/winver.h
+11
-4
11 additions, 4 deletions
include/winver.h
with
11 additions
and
4 deletions
include/winver.h
+
11
−
4
View file @
c84b7d33
/* Definitions for the VERsion infolibrary (VER.DLL)
/* Definitions for the VERsion info
library (VER.DLL)
*
* Copyright 1996 Marcus Meissner
*
...
...
@@ -25,7 +25,7 @@ extern "C" {
#endif
/* defined(__cplusplus) */
/* resource ids for different version infos */
#define VS_FILE_INFO
16
#define VS_FILE_INFO
RT_VERSION
#define VS_VERSION_INFO 1
#define VS_USER_DEFINED 100
...
...
@@ -49,6 +49,7 @@ extern "C" {
#define VOS_OS216 __MSABI_LONG(0x00020000)
#define VOS_OS232 __MSABI_LONG(0x00030000)
#define VOS_NT __MSABI_LONG(0x00040000)
#define VOS_WINCE __MSABI_LONG(0x00050000)
/* minor os version */
#define VOS__BASE __MSABI_LONG(0x00000000)
...
...
@@ -128,6 +129,8 @@ extern "C" {
#define VIF_CANNOTREADSRC __MSABI_LONG(0x00010000)
#define VIF_CANNOTREADDST __MSABI_LONG(0x00020000)
#define VIF_BUFFTOOSMALL __MSABI_LONG(0x00040000)
#define VIF_CANNOTLOADLZ32 __MSABI_LONG(0x00080000)
#define VIF_CANNOTLOADCABINET __MSABI_LONG(0x00100000)
typedef
struct
tagVS_FIXEDFILEINFO
{
DWORD
dwSignature
;
...
...
@@ -168,8 +171,12 @@ DWORD WINAPI GetFileVersionInfoSizeW(LPCWSTR,LPDWORD);
BOOL
WINAPI
GetFileVersionInfoA
(
LPCSTR
,
DWORD
,
DWORD
,
LPVOID
);
BOOL
WINAPI
GetFileVersionInfoW
(
LPCWSTR
,
DWORD
,
DWORD
,
LPVOID
);
#define GetFileVersionInfo WINELIB_NAME_AW(GetFileVersionInfo)
/* 20 GETFILEVERSIONINFORAW */
DWORD
WINAPI
GetFileVersionInfoSizeExA
(
DWORD
,
LPCSTR
,
LPDWORD
);
DWORD
WINAPI
GetFileVersionInfoSizeExW
(
DWORD
,
LPCWSTR
,
LPDWORD
);
#define GetFileVersionInfoSizeEx WINELIB_NAME_AW(GetFileVersionInfoSizeEx)
BOOL
WINAPI
GetFileVersionInfoExA
(
DWORD
,
LPCSTR
,
DWORD
,
DWORD
,
LPVOID
);
BOOL
WINAPI
GetFileVersionInfoExW
(
DWORD
,
LPCWSTR
,
DWORD
,
DWORD
,
LPVOID
);
#define GetFileVersionInfoEx WINELIB_NAME_AW(GetFileVersionInfoEx)
#endif
/* RC_INVOKED */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment