Use the proper calling convention for 2 16-bit functions.
This commit is contained in:
parent
2b8a7dca38
commit
80e023bdea
|
@ -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));
|
||||
}
|
||||
|
|
|
@ -98,8 +98,8 @@ LANGID WINAPI GetSystemDefaultLangID16(void)
|
|||
/******************************************************************************
|
||||
* LCMapStringA [OLE2NLS.6]
|
||||
*/
|
||||
INT16 LCMapString16(LCID lcid, DWORD mapflags, LPCSTR srcstr, INT16 srclen,
|
||||
LPSTR dststr, INT16 dstlen)
|
||||
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 */
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue