Fixed some issues found by winapi_check.

This commit is contained in:
Patrik Stridvall 2001-02-13 20:19:15 +00:00 committed by Alexandre Julliard
parent 988d1c233a
commit 7ac3db7b7f
1 changed files with 6 additions and 0 deletions

View File

@ -1,12 +1,18 @@
#include "windef.h" #include "windef.h"
#include "wine/winuser16.h" #include "wine/winuser16.h"
/***********************************************************************
* WINNLSEnableIME (WINNLS.16)
*/
BOOL WINAPI WINNLSEnableIME16(HWND16 hWnd, BOOL fEnable) BOOL WINAPI WINNLSEnableIME16(HWND16 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;
} }
/***********************************************************************
* WINNLSGetEnableStatus (WINNLS.18)
*/
BOOL WINAPI WINNLSGetEnableStatus16(HWND16 hWnd) BOOL WINAPI WINNLSGetEnableStatus16(HWND16 hWnd)
{ {
return FALSE; return FALSE;