A couple of stubs for Terminal Server Client 16 bit.
This commit is contained in:
parent
2081b8b0f6
commit
b455c75242
|
@ -1 +1,13 @@
|
||||||
/* nothing here yet */
|
#include "windef.h"
|
||||||
|
#include "wine/winuser16.h"
|
||||||
|
|
||||||
|
BOOL WINAPI WINNLSEnableIME16(HWND16 hWnd, BOOL fEnable)
|
||||||
|
{
|
||||||
|
/* fake return of previous status. is this what this function should do ? */
|
||||||
|
return !fEnable;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI WINNLSGetEnableStatus16(HWND16 hWnd)
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
|
@ -15,9 +15,9 @@ owner winnls32
|
||||||
12 stub WINNLSSETIMESTATUS
|
12 stub WINNLSSETIMESTATUS
|
||||||
14 stub WINNLSSETIMEHOTKEY
|
14 stub WINNLSSETIMEHOTKEY
|
||||||
15 stub WINNLSGETIMEHOTKEY
|
15 stub WINNLSGETIMEHOTKEY
|
||||||
16 stub WINNLSENABLEIME
|
16 pascal16 WINNLSEnableIME(word word) WINNLSEnableIME16
|
||||||
17 stub WINNLSGETKEYSTATE
|
17 stub WINNLSGETKEYSTATE
|
||||||
18 stub WINNLSGETENABLESTATUS
|
18 pascal16 WINNLSGetEnableStatus(word) WINNLSGetEnableStatus16
|
||||||
19 stub WINNLSSETKEYSTATE
|
19 stub WINNLSSETKEYSTATE
|
||||||
20 stub IMPADDIME
|
20 stub IMPADDIME
|
||||||
21 stub IMPDELETEIME
|
21 stub IMPDELETEIME
|
||||||
|
|
Loading…
Reference in New Issue