mirror of
https://github.com/reactos/wine.git
synced 2025-01-31 09:01:59 +00:00
winnls32: Restore the correct export names.
This commit is contained in:
parent
2397171cf3
commit
f8ae018423
@ -24,12 +24,15 @@
|
||||
#include "wownt32.h"
|
||||
#include "wine/winuser16.h"
|
||||
|
||||
BOOL WINAPI WINNLS32EnableIME(HWND hWnd, BOOL fEnable);
|
||||
BOOL WINAPI WINNLS32GetEnableStatus(HWND hWnd);
|
||||
|
||||
/***********************************************************************
|
||||
* WINNLSEnableIME (WINNLS.16)
|
||||
*/
|
||||
BOOL WINAPI WINNLSEnableIME16( HWND16 hwnd, BOOL enable )
|
||||
{
|
||||
return WINNLSEnableIME( HWND_32(hwnd), enable );
|
||||
return WINNLS32EnableIME( HWND_32(hwnd), enable );
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
@ -37,5 +40,5 @@ BOOL WINAPI WINNLSEnableIME16( HWND16 hwnd, BOOL enable )
|
||||
*/
|
||||
BOOL WINAPI WINNLSGetEnableStatus16( HWND16 hwnd )
|
||||
{
|
||||
return WINNLSGetEnableStatus( HWND_32(hwnd) );
|
||||
return WINNLS32GetEnableStatus( HWND_32(hwnd) );
|
||||
}
|
||||
|
@ -39,17 +39,17 @@ BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* WINNLSGetEnableStatus (WINNLS32.2)
|
||||
* WINNLS32GetEnableStatus (WINNLS32.2)
|
||||
*/
|
||||
BOOL WINAPI WINNLSGetEnableStatus(HWND hWnd)
|
||||
BOOL WINAPI WINNLS32GetEnableStatus(HWND hWnd)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* WINNLSEnableIME (WINNLS32.1)
|
||||
* WINNLS32EnableIME (WINNLS32.1)
|
||||
*/
|
||||
BOOL WINAPI WINNLSEnableIME(HWND hWnd, BOOL fEnable)
|
||||
BOOL WINAPI WINNLS32EnableIME(HWND hWnd, BOOL fEnable)
|
||||
{
|
||||
/* fake return of previous status. is this what this function should do ? */
|
||||
return !fEnable;
|
||||
|
@ -1,5 +1,5 @@
|
||||
1 stdcall WINNLSEnableIME(long long)
|
||||
2 stdcall WINNLSGetEnableStatus(long)
|
||||
1 stdcall WINNLS32EnableIME(long long)
|
||||
2 stdcall WINNLS32GetEnableStatus(long)
|
||||
3 stub WINNLS32GetIMEHotKey
|
||||
21 stub IMP32GetIME
|
||||
22 stub IMP32QueryIME
|
||||
|
Loading…
x
Reference in New Issue
Block a user