Storing an IP address in a signed int results in bugs if it starts
[wine] / dlls / winnls / winnls.c
1 #include "windef.h"
2 #include "wine/winuser16.h"
3
4 /***********************************************************************
5  *              WINNLSEnableIME (WINNLS.16)
6  */
7 BOOL WINAPI WINNLSEnableIME16(HWND16 hWnd, BOOL fEnable)
8 {
9     /* fake return of previous status. is this what this function should do ? */
10     return !fEnable;
11 }
12
13 /***********************************************************************
14  *              WINNLSGetEnableStatus (WINNLS.18)
15  */
16 BOOL WINAPI WINNLSGetEnableStatus16(HWND16 hWnd)
17 {
18     return FALSE;
19 }