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
Yoann Laissus
wine
Commits
fc846d70
Commit
fc846d70
authored
24 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
Moved FORMAT_MESSAGE flags definition to winbase.h.
parent
f5aee67c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/winbase.h
+9
-0
9 additions, 0 deletions
include/winbase.h
include/winuser.h
+7
-19
7 additions, 19 deletions
include/winuser.h
with
16 additions
and
19 deletions
include/winbase.h
+
9
−
0
View file @
fc846d70
...
...
@@ -952,6 +952,15 @@ typedef DWORD CALLBACK (*LPPROGRESS_ROUTINE)(LARGE_INTEGER, LARGE_INTEGER, LARGE
#define THREAD_PRIORITY_TIME_CRITICAL THREAD_BASE_PRIORITY_LOWRT
#define THREAD_PRIORITY_IDLE THREAD_BASE_PRIORITY_IDLE
/* flags to FormatMessage */
#define FORMAT_MESSAGE_ALLOCATE_BUFFER 0x00000100
#define FORMAT_MESSAGE_IGNORE_INSERTS 0x00000200
#define FORMAT_MESSAGE_FROM_STRING 0x00000400
#define FORMAT_MESSAGE_FROM_HMODULE 0x00000800
#define FORMAT_MESSAGE_FROM_SYSTEM 0x00001000
#define FORMAT_MESSAGE_ARGUMENT_ARRAY 0x00002000
#define FORMAT_MESSAGE_MAX_WIDTH_MASK 0x000000FF
/* Could this type be considered opaque? */
typedef
struct
{
LPVOID
DebugInfo
;
...
...
This diff is collapsed.
Click to expand it.
include/winuser.h
+
7
−
19
View file @
fc846d70
...
...
@@ -1263,15 +1263,6 @@ typedef struct {
#define CDS_SETRECT 0x20000000
#define CDS_NORESET 0x10000000
/* flags to FormatMessage */
#define FORMAT_MESSAGE_ALLOCATE_BUFFER 0x00000100
#define FORMAT_MESSAGE_IGNORE_INSERTS 0x00000200
#define FORMAT_MESSAGE_FROM_STRING 0x00000400
#define FORMAT_MESSAGE_FROM_HMODULE 0x00000800
#define FORMAT_MESSAGE_FROM_SYSTEM 0x00001000
#define FORMAT_MESSAGE_ARGUMENT_ARRAY 0x00002000
#define FORMAT_MESSAGE_MAX_WIDTH_MASK 0x000000FF
typedef
struct
{
UINT
cbSize
;
...
...
@@ -3723,15 +3714,9 @@ HWND WINAPI WindowFromPoint(POINT);
BOOL
WINAPI
WinHelpA
(
HWND
,
LPCSTR
,
UINT
,
DWORD
);
BOOL
WINAPI
WinHelpW
(
HWND
,
LPCWSTR
,
UINT
,
DWORD
);
#define WinHelp WINELIB_NAME_AW(WinHelp)
INT
WINAPIV
wsnprintfA
(
LPSTR
,
UINT
,
LPCSTR
,...);
INT
WINAPIV
wsnprintfW
(
LPWSTR
,
UINT
,
LPCWSTR
,...);
#define wsnprintf WINELIB_NAME_AW(wsnprintf)
INT
WINAPIV
wsprintfA
(
LPSTR
,
LPCSTR
,...);
INT
WINAPIV
wsprintfW
(
LPWSTR
,
LPCWSTR
,...);
#define wsprintf WINELIB_NAME_AW(wsprintf)
INT
WINAPI
wvsnprintfA
(
LPSTR
,
UINT
,
LPCSTR
,
va_list
);
INT
WINAPI
wvsnprintfW
(
LPWSTR
,
UINT
,
LPCWSTR
,
va_list
);
#define wvsnprintf WINELIB_NAME_AW(wvsnprintf)
INT
WINAPI
wvsprintfA
(
LPSTR
,
LPCSTR
,
va_list
);
INT
WINAPI
wvsprintfW
(
LPWSTR
,
LPCWSTR
,
va_list
);
#define wvsprintf WINELIB_NAME_AW(wvsprintf)
...
...
@@ -3742,11 +3727,14 @@ WORD WINAPI SYSTEM_KillSystemTimer( WORD );
/* Extra functions that don't exist in the Windows API */
HPEN
WINAPI
GetSysColorPen
(
INT
);
INT
WINAPI
LoadMessageA
(
HMODULE
,
UINT
,
WORD
,
LPSTR
,
INT
);
INT
WINAPI
LoadMessageW
(
HMODULE
,
UINT
,
WORD
,
LPWSTR
,
INT
);
HPEN
WINAPI
GetSysColorPen
(
INT
);
VOID
WINAPI
ScreenSwitchEnable16
(
WORD
);
INT
WINAPIV
wsnprintfA
(
LPSTR
,
UINT
,
LPCSTR
,...);
INT
WINAPIV
wsnprintfW
(
LPWSTR
,
UINT
,
LPCWSTR
,...);
#define wsnprintf WINELIB_NAME_AW(wsnprintf)
INT
WINAPI
wvsnprintfA
(
LPSTR
,
UINT
,
LPCSTR
,
va_list
);
INT
WINAPI
wvsnprintfW
(
LPWSTR
,
UINT
,
LPCWSTR
,
va_list
);
#define wvsnprintf WINELIB_NAME_AW(wvsnprintf)
#define WC_DIALOG (LPSTR)((DWORD)((WORD)( 0x8002)))
...
...
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