Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
fa6563d5
Commit
fa6563d5
authored
May 29, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
May 29, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- always declare the lstr* functions, even if they're inline
- add prototype for ReadDirectoryChangesW
parent
33f4108b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
winbase.h
include/winbase.h
+2
-3
No files found.
include/winbase.h
View file @
fa6563d5
...
...
@@ -1621,6 +1621,7 @@ void WINAPI RaiseException(DWORD,DWORD,DWORD,const ULONG_PTR *);
BOOL
WINAPI
ReadEventLogA
(
HANDLE
,
DWORD
,
DWORD
,
LPVOID
,
DWORD
,
DWORD
*
,
DWORD
*
);
BOOL
WINAPI
ReadEventLogW
(
HANDLE
,
DWORD
,
DWORD
,
LPVOID
,
DWORD
,
DWORD
*
,
DWORD
*
);
#define ReadEventLog WINELIB_NAME_AW(ReadEventLog)
BOOL
WINAPI
ReadDirectoryChangesW
(
HANDLE
,
LPVOID
,
DWORD
,
BOOL
,
DWORD
,
LPDWORD
,
LPOVERLAPPED
,
LPOVERLAPPED_COMPLETION_ROUTINE
);
BOOL
WINAPI
ReadFile
(
HANDLE
,
LPVOID
,
DWORD
,
LPDWORD
,
LPOVERLAPPED
);
BOOL
WINAPI
ReadFileEx
(
HANDLE
,
LPVOID
,
DWORD
,
LPOVERLAPPED
,
LPOVERLAPPED_COMPLETION_ROUTINE
);
HANDLE
WINAPI
RegisterEventSourceA
(
LPCSTR
,
LPCSTR
);
...
...
@@ -1985,8 +1986,6 @@ BOOL WINAPI WriteProfileStringW(LPCWSTR,LPCWSTR,LPCWSTR);
#define WriteProfileString WINELIB_NAME_AW(WriteProfileString)
#define Yield()
#if defined(WINE_NO_INLINE_STRING) || !defined(__WINESRC__)
LPSTR
WINAPI
lstrcatA
(
LPSTR
,
LPCSTR
);
LPWSTR
WINAPI
lstrcatW
(
LPWSTR
,
LPCWSTR
);
LPSTR
WINAPI
lstrcpyA
(
LPSTR
,
LPCSTR
);
...
...
@@ -1996,7 +1995,7 @@ LPWSTR WINAPI lstrcpynW(LPWSTR,LPCWSTR,INT);
INT
WINAPI
lstrlenA
(
LPCSTR
);
INT
WINAPI
lstrlenW
(
LPCWSTR
);
#
else
/* !defined(WINE_NO_INLINE_STRING) && defined(__WINESRC__) */
#
if !defined(WINE_NO_INLINE_STRING) && defined(__WINESRC__)
/* string functions without the exception handler */
...
...
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