Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
d92b5971
Commit
d92b5971
authored
Dec 07, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Use proper dllimports for user32 functions.
parent
402d50d5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
5 deletions
+11
-5
Makefile.in
dlls/kernelbase/Makefile.in
+1
-1
Makefile.in
dlls/win32u/Makefile.in
+1
-1
dde.h
include/dde.h
+3
-1
ddeml.h
include/ddeml.h
+3
-1
winuser.h
include/winuser.h
+3
-1
No files found.
dlls/kernelbase/Makefile.in
View file @
d92b5971
EXTRADEFS
=
-DWINBASEAPI
=
-DWINADVAPI
=
EXTRADEFS
=
-DWINBASEAPI
=
-DWINADVAPI
=
-DWINUSERAPI
=
MODULE
=
kernelbase.dll
IMPORTLIB
=
kernelbase
IMPORTS
=
uuid ntdll winecrt0
...
...
dlls/win32u/Makefile.in
View file @
d92b5971
EXTRADEFS
=
-DWINGDIAPI
=
EXTRADEFS
=
-DWINGDIAPI
=
-DWINUSERAPI
=
MODULE
=
win32u.dll
UNIXLIB
=
win32u.so
IMPORTLIB
=
win32u
...
...
include/dde.h
View file @
d92b5971
...
...
@@ -28,10 +28,12 @@
extern
"C"
{
#endif
#ifndef WINUSERAPI
#if defined(_USER32_) || defined(WINE_UNIX_LIB)
#define WINUSERAPI
#else
#define WINUSERAPI DECLSPEC_HIDDEN
#define WINUSERAPI DECLSPEC_IMPORT
#endif
#endif
#include <dde.rh>
...
...
include/ddeml.h
View file @
d92b5971
...
...
@@ -26,10 +26,12 @@
extern
"C"
{
#endif
/* defined(__cplusplus) */
#ifndef WINUSERAPI
#if defined(_USER32_) || defined(WINE_UNIX_LIB)
#define WINUSERAPI
#else
#define WINUSERAPI DECLSPEC_HIDDEN
#define WINUSERAPI DECLSPEC_IMPORT
#endif
#endif
/* Codepage Constants
...
...
include/winuser.h
View file @
d92b5971
...
...
@@ -19,11 +19,13 @@
#ifndef _WINUSER_
#define _WINUSER_
#ifndef WINUSERAPI
#if !defined(_USER32_) && !defined(WINE_UNIX_LIB)
#define WINUSERAPI DECLSPEC_
HIDDEN
#define WINUSERAPI DECLSPEC_
IMPORT
#else
#define WINUSERAPI
#endif
#endif
#ifndef RC_INVOKED
#include <stdarg.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment