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
80e023bd
Commit
80e023bd
authored
Sep 27, 2005
by
Vincent Béron
Committed by
Alexandre Julliard
Sep 27, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the proper calling convention for 2 16-bit functions.
parent
2b8a7dca
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
msvideo16.c
dlls/msvideo/msvideo16.c
+1
-1
ole2nls.c
dlls/ole32/ole2nls.c
+1
-2
No files found.
dlls/msvideo/msvideo16.c
View file @
80e023bd
...
...
@@ -118,7 +118,7 @@ BOOL16 VFWAPI DrawDibStart16(HDRAWDIB16 hdd, DWORD rate)
/*************************************************************************
* DrawDibStop [MSVIDEO.119]
*/
BOOL16
DrawDibStop16
(
HDRAWDIB16
hdd
)
BOOL16
VFWAPI
DrawDibStop16
(
HDRAWDIB16
hdd
)
{
return
DrawDibStop
(
HDRAWDIB_32
(
hdd
));
}
...
...
dlls/ole32/ole2nls.c
View file @
80e023bd
...
...
@@ -98,7 +98,7 @@ LANGID WINAPI GetSystemDefaultLangID16(void)
/******************************************************************************
* LCMapStringA [OLE2NLS.6]
*/
INT16
LCMapString16
(
LCID
lcid
,
DWORD
mapflags
,
LPCSTR
srcstr
,
INT16
srclen
,
INT16
WINAPI
LCMapString16
(
LCID
lcid
,
DWORD
mapflags
,
LPCSTR
srcstr
,
INT16
srclen
,
LPSTR
dststr
,
INT16
dstlen
)
{
return
LCMapStringA
(
lcid
,
mapflags
,
srcstr
,
srclen
,
dststr
,
dstlen
);
...
...
@@ -133,4 +133,3 @@ BOOL16 WINAPI RegisterNLSInfoChanged16(LPVOID lpNewNLSInfo) /* [???] FIXME */
return
FALSE
;
/* ptr not set */
}
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