Skip to content

Commit ef02ab3

Browse files
committed
[ARWINSS]
- Fix SetLogonNotify and SetWindowStationUser stubs. svn path=/branches/arwinss/; revision=66739
1 parent ece9a11 commit ef02ab3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

arwinss/client/user32/csr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ BOOL WINAPI RegisterLogonProcess(DWORD dwProcessId, BOOL bRegister)
117117
*/
118118
BOOL
119119
WINAPI
120-
SetLogonNotifyWindow (HWND Wnd, HWINSTA WinSta)
120+
SetLogonNotifyWindow (HWND Wnd)
121121
{
122122
#if 0
123123
/* Maybe we should call NtUserSetLogonNotifyWindow and let that one inform CSRSS??? */

arwinss/client/user32/misc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,9 @@ VOID WINAPI SetDebugErrorLevel( DWORD dwLevel )
202202
/***********************************************************************
203203
* SetWindowStationUser (USER32.@)
204204
*/
205-
DWORD WINAPI SetWindowStationUser(DWORD x1,DWORD x2)
205+
DWORD WINAPI SetWindowStationUser(DWORD x1,DWORD x2,DWORD x3,DWORD x4)
206206
{
207-
FIXME("(0x%08x,0x%08x),stub!\n",x1,x2);
207+
FIXME("(0x%08x,0x%08x,0x%08x,0x%08x),stub!\n",x1,x2,x3,x4);
208208
return 1;
209209
}
210210

arwinss/client/user32/user32.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@
631631
@ stdcall SetKeyboardState(ptr)
632632
@ stdcall SetLastErrorEx(long long)
633633
@ stdcall SetLayeredWindowAttributes(ptr long long long)
634-
@ stdcall SetLogonNotifyWindow(long long)
634+
@ stdcall SetLogonNotifyWindow(long)
635635
@ stdcall SetMenu(long long)
636636
@ stdcall SetMenuContextHelpId(long long)
637637
@ stdcall SetMenuDefaultItem(long long long)
@@ -676,7 +676,7 @@
676676
@ stdcall SetWindowPlacement(long ptr)
677677
@ stdcall SetWindowPos(long long long long long long long)
678678
@ stdcall SetWindowRgn(long long long)
679-
@ stdcall SetWindowStationUser(long long)
679+
@ stdcall SetWindowStationUser(long long long long)
680680
@ stdcall SetWindowText(long str) SetWindowTextA
681681
@ stdcall SetWindowTextA(long str)
682682
@ stdcall SetWindowTextW(long wstr)

0 commit comments

Comments
 (0)