Commit 7ac3db7b authored by Patrik Stridvall's avatar Patrik Stridvall Committed by Alexandre Julliard

Fixed some issues found by winapi_check.

parent 988d1c23
#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;
......
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