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
51f58420
Commit
51f58420
authored
Jun 06, 1999
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved inclusion of winestring.h to winebase.h.
Added Winelib macros for lstrncmp functions.
parent
e0ec8fd9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
7 deletions
+10
-7
winbase.h
include/winbase.h
+1
-0
winestring.h
include/wine/winestring.h
+8
-6
winuser.h
include/winuser.h
+0
-1
joystick.c
multimedia/joystick.c
+1
-0
No files found.
include/winbase.h
View file @
51f58420
...
...
@@ -2,6 +2,7 @@
#define __WINE_WINBASE_H
#include "winnt.h"
#include "wine/winestring.h"
#include "pshpack1.h"
...
...
include/wine/winestring.h
View file @
51f58420
...
...
@@ -4,13 +4,15 @@
#include "windef.h"
INT16
WINAPI
WideCharToLocal16
(
LPSTR
,
LPWSTR
,
INT16
);
INT
WINAPI
WideCharToLocal
(
LPSTR
,
LPWSTR
,
INT
);
INT
WINAPI
WideCharToLocal
(
LPSTR
,
LPWSTR
,
INT
);
INT16
WINAPI
LocalToWideChar16
(
LPWSTR
,
LPSTR
,
INT16
);
INT
WINAPI
LocalToWideChar
(
LPWSTR
,
LPSTR
,
INT
);
INT
WINAPI
lstrncmpA
(
LPCSTR
,
LPCSTR
,
INT
);
INT
WINAPI
lstrncmpW
(
LPCWSTR
,
LPCWSTR
,
INT
);
INT
WINAPI
lstrncmpiA
(
LPCSTR
,
LPCSTR
,
INT
);
INT
WINAPI
lstrncmpiW
(
LPCWSTR
,
LPCWSTR
,
INT
);
INT
WINAPI
LocalToWideChar
(
LPWSTR
,
LPSTR
,
INT
);
INT
WINAPI
lstrncmpA
(
LPCSTR
,
LPCSTR
,
INT
);
INT
WINAPI
lstrncmpW
(
LPCWSTR
,
LPCWSTR
,
INT
);
#define lstrncmp WINELIB_NAME_AW(lstrncmp)
INT
WINAPI
lstrncmpiA
(
LPCSTR
,
LPCSTR
,
INT
);
INT
WINAPI
lstrncmpiW
(
LPCWSTR
,
LPCWSTR
,
INT
);
#define lstrncmpi WINELIB_NAME_AW(lstrncmpi)
LPWSTR
WINAPI
lstrcpyAtoW
(
LPWSTR
,
LPCSTR
);
LPSTR
WINAPI
lstrcpyWtoA
(
LPSTR
,
LPCWSTR
);
LPWSTR
WINAPI
lstrcpynAtoW
(
LPWSTR
,
LPCSTR
,
INT
);
...
...
include/winuser.h
View file @
51f58420
...
...
@@ -6,7 +6,6 @@
#endif
#include "windef.h"
#include "wingdi.h"
#include "wine/winestring.h"
#ifdef __cplusplus
extern
"C"
{
...
...
multimedia/joystick.c
View file @
51f58420
...
...
@@ -20,6 +20,7 @@
#include <sys/ioctl.h>
#include <sys/errno.h>
#include "winuser.h"
#include "winbase.h"
#include "mmsystem.h"
#include "debug.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