Fixed some issues found by winapi_check.
This commit is contained in:
parent
433e6a2765
commit
8f4ffb92bd
|
@ -472,7 +472,7 @@ static void Codec_Close( CodecImpl* This )
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
LONG APIENTRY MSRLE32_DriverProc(
|
LONG WINAPI MSRLE32_DriverProc(
|
||||||
DWORD dwDriverId, HDRVR hdrvr, UINT msg, LONG lParam1, LONG lParam2 )
|
DWORD dwDriverId, HDRVR hdrvr, UINT msg, LONG lParam1, LONG lParam2 )
|
||||||
{
|
{
|
||||||
TRACE( "DriverProc(%08lx,%08x,%08x,%08lx,%08lx)\n",
|
TRACE( "DriverProc(%08lx,%08x,%08x,%08lx,%08lx)\n",
|
||||||
|
@ -604,7 +604,7 @@ LONG APIENTRY MSRLE32_DriverProc(
|
||||||
return DefDriverProc( dwDriverId, hdrvr, msg, lParam1, lParam2 );
|
return DefDriverProc( dwDriverId, hdrvr, msg, lParam1, lParam2 );
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL APIENTRY MSRLE32_DllMain( HINSTANCE hInst, DWORD dwReason, LPVOID lpvReserved )
|
BOOL WINAPI MSRLE32_DllMain( HINSTANCE hInst, DWORD dwReason, LPVOID lpvReserved )
|
||||||
{
|
{
|
||||||
TRACE( "(%08x,%08lx,%p)\n",hInst,dwReason,lpvReserved );
|
TRACE( "(%08x,%08lx,%p)\n",hInst,dwReason,lpvReserved );
|
||||||
|
|
||||||
|
|
|
@ -60,7 +60,7 @@ debug_channels (bitblt bitmap clipboard cursor dinput event font gdi graphics
|
||||||
|
|
||||||
# USER driver
|
# USER driver
|
||||||
|
|
||||||
@ cdecl InitKeyboard() X11DRV_InitKeyboard
|
@ cdecl InitKeyboard(ptr) X11DRV_InitKeyboard
|
||||||
@ cdecl VkKeyScan(long) X11DRV_VkKeyScan
|
@ cdecl VkKeyScan(long) X11DRV_VkKeyScan
|
||||||
@ cdecl MapVirtualKey(long long) X11DRV_MapVirtualKey
|
@ cdecl MapVirtualKey(long long) X11DRV_MapVirtualKey
|
||||||
@ cdecl GetKeyNameText(long str long) X11DRV_GetKeyNameText
|
@ cdecl GetKeyNameText(long str long) X11DRV_GetKeyNameText
|
||||||
|
|
Loading…
Reference in New Issue