Commit f8ae0184 authored by Andrew Nguyen's avatar Andrew Nguyen Committed by Alexandre Julliard

winnls32: Restore the correct export names.

parent 2397171c
...@@ -24,12 +24,15 @@ ...@@ -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 ) ...@@ -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 ) ...@@ -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 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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment