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
Releases
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
Felix Münchhalfen
wine
Commits
d6ade697
Commit
d6ade697
authored
26 years ago
by
Dave Pickles
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fixed a couple of missing #defines for Win32 API functions with
ASCII/Unicode versions.
parent
48241e99
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/winbase.h
+3
-1
3 additions, 1 deletion
include/winbase.h
with
3 additions
and
1 deletion
include/winbase.h
+
3
−
1
View file @
d6ade697
...
...
@@ -1550,6 +1550,7 @@ VOID WINAPI RtlMoveMemory(LPVOID,LPCVOID,UINT);
VOID
WINAPI
RtlZeroMemory
(
LPVOID
,
UINT
);
DWORD
WINAPI
SearchPathA
(
LPCSTR
,
LPCSTR
,
LPCSTR
,
DWORD
,
LPSTR
,
LPSTR
*
);
DWORD
WINAPI
SearchPathW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
DWORD
,
LPWSTR
,
LPWSTR
*
);
#define SearchPath WINELIB_NAME_AW(SearchPath)
BOOL
WINAPI
SetCommMask
(
INT
,
DWORD
);
BOOL
WINAPI
SetComputerNameA
(
LPCSTR
);
BOOL
WINAPI
SetComputerNameW
(
LPCWSTR
);
...
...
@@ -1817,9 +1818,10 @@ BOOL WINAPI WritePrivateProfileSectionW(LPCWSTR,LPCWSTR,LPCWSTR);
#define WritePrivateProfileSection WINELIB_NAME_AW(WritePrivateProfileSection)
BOOL
WINAPI
WritePrivateProfileStringA
(
LPCSTR
,
LPCSTR
,
LPCSTR
,
LPCSTR
);
BOOL
WINAPI
WritePrivateProfileStringW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
LPCWSTR
);
#define WritePrivateProfileString WINELIB_NAME_AW(WritePrivateProfileString)
BOOL
WINAPI
WriteProfileSectionA
(
LPCSTR
,
LPCSTR
);
BOOL
WINAPI
WriteProfileSectionW
(
LPCWSTR
,
LPCWSTR
);
#define WritePrivateProfileS
tring
WINELIB_NAME_AW(WritePrivateProfileS
tring
)
#define WritePrivateProfileS
ection
WINELIB_NAME_AW(WritePrivateProfileS
ection
)
BOOL
WINAPI
WritePrivateProfileStructA
(
LPCSTR
,
LPCSTR
,
LPVOID
,
UINT
,
LPCSTR
);
BOOL
WINAPI
WritePrivateProfileStructW
(
LPCWSTR
,
LPCWSTR
,
LPVOID
,
UINT
,
LPCWSTR
);
#define WritePrivateProfileStruct WINELIB_NAME_AW(WritePrivateProfileStruct)
...
...
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