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
627702de
Commit
627702de
authored
26 years ago
by
Uwe Bonnes
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added an extern "C" safeguard.
parent
9fdceb8a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/commctrl.h
+7
-0
7 additions, 0 deletions
include/commctrl.h
include/winbase.h
+8
-0
8 additions, 0 deletions
include/winbase.h
include/wintypes.h
+8
-0
8 additions, 0 deletions
include/wintypes.h
with
23 additions
and
0 deletions
include/commctrl.h
+
7
−
0
View file @
627702de
...
...
@@ -8,6 +8,10 @@
#include
"windows.h"
#include
"imagelist.h"
#ifdef __cplusplus
extern
"C"
{
#endif
BOOL32
WINAPI
ShowHideMenuCtl
(
HWND32
,
UINT32
,
LPINT32
);
VOID
WINAPI
GetEffectiveClientRect
(
HWND32
,
LPRECT32
,
LPINT32
);
VOID
WINAPI
InitCommonControls
(
VOID
);
...
...
@@ -2484,5 +2488,8 @@ LRESULT WINAPI COMCTL32_SendNotify (HWND32, HWND32, UINT32, LPNMHDR);
/* type and functionality of last parameter is still unknown */
LRESULT
WINAPI
COMCTL32_SendNotifyEx
(
HWND32
,
HWND32
,
UINT32
,
LPNMHDR
,
DWORD
);
#ifdef __cplusplus
}
#endif
#endif
/* __WINE_COMMCTRL_H */
This diff is collapsed.
Click to expand it.
include/winbase.h
+
8
−
0
View file @
627702de
...
...
@@ -3,6 +3,10 @@
#include
"windows.h"
#ifdef __cplusplus
extern
"C"
{
#endif
#define WAIT_FAILED 0xffffffff
#define WAIT_OBJECT_0 0
#define WAIT_ABANDONED STATUS_ABANDONED_WAIT_0
...
...
@@ -195,4 +199,8 @@ void WINAPI RaiseException(DWORD,DWORD,DWORD,const LPDWORD);
BOOL32
WINAPI
TerminateProcess
(
HANDLE32
,
DWORD
);
BOOL32
WINAPI
TerminateThread
(
HANDLE32
,
DWORD
);
#ifdef __cplusplus
}
#endif
#endif
/* __WINE_WINBASE_H */
This diff is collapsed.
Click to expand it.
include/wintypes.h
+
8
−
0
View file @
627702de
...
...
@@ -12,6 +12,10 @@
# undef UNICODE
#endif
/* __WINE__ */
#ifdef __cplusplus
extern
"C"
{
#endif
/* Macros to map Winelib names to the correct implementation name */
/* depending on __WINE__ and UNICODE macros. */
/* Note that Winelib is purely Win32. */
...
...
@@ -378,4 +382,8 @@ DECL_WINELIB_TYPE(HWND)
extern
int
__winelib
;
#endif
/* __WINE__ */
#ifdef __cplusplus
}
#endif
#endif
/* __WINE_WINTYPES_H */
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