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
c63f4853
Commit
c63f4853
authored
Dec 07, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Use proper dllimports for comctl32 functions.
parent
f9ee565c
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
5 deletions
+14
-5
Makefile.in
dlls/comctl32/Makefile.in
+1
-0
commctrl.h
include/commctrl.h
+0
-0
prsht.h
include/prsht.h
+13
-5
No files found.
dlls/comctl32/Makefile.in
View file @
c63f4853
EXTRADEFS
=
-D_COMCTL32_
MODULE
=
comctl32.dll
IMPORTLIB
=
comctl32
IMPORTS
=
uuid user32 gdi32 advapi32 usp10 imm32 kernelbase
...
...
include/commctrl.h
View file @
c63f4853
This diff is collapsed.
Click to expand it.
include/prsht.h
View file @
c63f4853
...
...
@@ -23,6 +23,14 @@
extern
"C"
{
#endif
#ifndef WINCOMMCTRLAPI
#ifdef _COMCTL32_
# define WINCOMMCTRLAPI
#else
# define WINCOMMCTRLAPI DECLSPEC_IMPORT
#endif
#endif
/*
* Property sheet support (callback procs)
...
...
@@ -276,13 +284,13 @@ typedef const PROPSHEETHEADERW *LPCPROPSHEETHEADERW;
/*
* Property sheet support (methods)
*/
INT_PTR
WINAPI
PropertySheetA
(
LPCPROPSHEETHEADERA
);
INT_PTR
WINAPI
PropertySheetW
(
LPCPROPSHEETHEADERW
);
WINCOMMCTRLAPI
INT_PTR
WINAPI
PropertySheetA
(
LPCPROPSHEETHEADERA
);
WINCOMMCTRLAPI
INT_PTR
WINAPI
PropertySheetW
(
LPCPROPSHEETHEADERW
);
#define PropertySheet WINELIB_NAME_AW(PropertySheet)
HPROPSHEETPAGE
WINAPI
CreatePropertySheetPageA
(
LPCPROPSHEETPAGEA
);
HPROPSHEETPAGE
WINAPI
CreatePropertySheetPageW
(
LPCPROPSHEETPAGEW
);
WINCOMMCTRLAPI
HPROPSHEETPAGE
WINAPI
CreatePropertySheetPageA
(
LPCPROPSHEETPAGEA
);
WINCOMMCTRLAPI
HPROPSHEETPAGE
WINAPI
CreatePropertySheetPageW
(
LPCPROPSHEETPAGEW
);
#define CreatePropertySheetPage WINELIB_NAME_AW(CreatePropertySheetPage)
BOOL
WINAPI
DestroyPropertySheetPage
(
HPROPSHEETPAGE
hPropPage
);
WINCOMMCTRLAPI
BOOL
WINAPI
DestroyPropertySheetPage
(
HPROPSHEETPAGE
hPropPage
);
/*
* Property sheet support (UNICODE-Winelib)
...
...
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