winnls32: Restore the correct export names.
This commit is contained in:
parent
2397171cf3
commit
f8ae018423
3 changed files with 11 additions and 8 deletions
|
@ -24,12 +24,15 @@
|
||||||
#include "wownt32.h"
|
#include "wownt32.h"
|
||||||
#include "wine/winuser16.h"
|
#include "wine/winuser16.h"
|
||||||
|
|
||||||
|
BOOL WINAPI WINNLS32EnableIME(HWND hWnd, BOOL fEnable);
|
||||||
|
BOOL WINAPI WINNLS32GetEnableStatus(HWND hWnd);
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* WINNLSEnableIME (WINNLS.16)
|
* WINNLSEnableIME (WINNLS.16)
|
||||||
*/
|
*/
|
||||||
BOOL WINAPI WINNLSEnableIME16( HWND16 hwnd, BOOL enable )
|
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 )
|
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;
|
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 ? */
|
/* fake return of previous status. is this what this function should do ? */
|
||||||
return !fEnable;
|
return !fEnable;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
1 stdcall WINNLSEnableIME(long long)
|
1 stdcall WINNLS32EnableIME(long long)
|
||||||
2 stdcall WINNLSGetEnableStatus(long)
|
2 stdcall WINNLS32GetEnableStatus(long)
|
||||||
3 stub WINNLS32GetIMEHotKey
|
3 stub WINNLS32GetIMEHotKey
|
||||||
21 stub IMP32GetIME
|
21 stub IMP32GetIME
|
||||||
22 stub IMP32QueryIME
|
22 stub IMP32QueryIME
|
||||||
|
|
Loading…
Add table
Reference in a new issue