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
e5d7d69f
Commit
e5d7d69f
authored
Dec 21, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 21, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole2nls: Fix CompareString() prototype.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
eee6332e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
ole2nls.c
dlls/ole2nls.dll16/ole2nls.c
+2
-3
winbase16.h
include/wine/winbase16.h
+1
-1
No files found.
dlls/ole2nls.dll16/ole2nls.c
View file @
e5d7d69f
...
...
@@ -104,10 +104,9 @@ INT16 WINAPI LCMapString16(LCID lcid, DWORD mapflags, LPCSTR srcstr, INT16 srcle
/***********************************************************************
* CompareStringA (OLE2NLS.8)
*/
UINT16
WINAPI
CompareString16
(
DWORD
lcid
,
DWORD
fdwStyle
,
LPCSTR
s1
,
DWORD
l1
,
LPCSTR
s2
,
DWORD
l2
)
INT16
WINAPI
CompareString16
(
LCID
lcid
,
DWORD
flags
,
LPCSTR
str1
,
INT16
len1
,
LPCSTR
str2
,
INT16
len2
)
{
return
(
UINT16
)
CompareStringA
(
lcid
,
fdwStyle
,
s1
,
l1
,
s2
,
l
2
);
return
CompareStringA
(
lcid
,
flags
,
str1
,
len1
,
str2
,
len
2
);
}
/******************************************************************************
...
...
include/wine/winbase16.h
View file @
e5d7d69f
...
...
@@ -435,7 +435,7 @@ VOID WINAPI _LeaveWin16Lock(void);
INT16
WINAPI
AccessResource16
(
HINSTANCE16
,
HRSRC16
);
ATOM
WINAPI
AddAtom16
(
LPCSTR
);
UINT16
WINAPI
CompareString16
(
DWORD
,
DWORD
,
LPCSTR
,
DWORD
,
LPCSTR
,
DWORD
);
INT16
WINAPI
CompareString16
(
LCID
,
DWORD
,
LPCSTR
,
INT16
,
LPCSTR
,
INT16
);
BOOL16
WINAPI
CreateDirectory16
(
LPCSTR
,
LPVOID
);
BOOL16
WINAPI
DefineHandleTable16
(
WORD
);
ATOM
WINAPI
DeleteAtom16
(
ATOM
);
...
...
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