2001-02-12 02:13:54 +01:00
|
|
|
#include "windef.h"
|
|
|
|
#include "wine/winuser16.h"
|
|
|
|
|
2001-02-13 21:19:15 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* WINNLSEnableIME (WINNLS.16)
|
|
|
|
*/
|
2001-02-12 02:13:54 +01:00
|
|
|
BOOL WINAPI WINNLSEnableIME16(HWND16 hWnd, BOOL fEnable)
|
|
|
|
{
|
|
|
|
/* fake return of previous status. is this what this function should do ? */
|
|
|
|
return !fEnable;
|
|
|
|
}
|
|
|
|
|
2001-02-13 21:19:15 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* WINNLSGetEnableStatus (WINNLS.18)
|
|
|
|
*/
|
2001-02-12 02:13:54 +01:00
|
|
|
BOOL WINAPI WINNLSGetEnableStatus16(HWND16 hWnd)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|