Skip to content

Commit cc1122b

Browse files
committed
- Hack away two biggest Arwinss bugs:
* Bug reactos#1 in msgina: GUIDisplayStatusMessage hang. * Bug reactos#2 in user32: Failed to create desktop window, by forcing desktop window creation. Annoying debug messages are present. - Move input thread from win32csr.dll to user32's inputros.c. The trick is to export NtUserCallOneParam from user32, which is called by usersrv to start the threads. (c) Pigglesworth. - Arwinss now boots again. - Shutdown is not implemented yet. svn path=/branches/arwinss/; revision=69874
1 parent c3a1464 commit cc1122b

File tree

5 files changed

+419
-3
lines changed

5 files changed

+419
-3
lines changed

arwinss/client/user32/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ list(APPEND SOURCE
3333
hook.c
3434
icontitle.c
3535
input.c
36+
inputros.c
3637
legacy.c
3738
listbox.c
3839
lstr.c

arwinss/client/user32/csr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ SetLogonNotifyWindow (HWND Wnd)
144144
return TRUE;
145145
#else
146146
ERR("SetLogonNotifyWindow is not yet implemented in Arwinss\n");
147-
return FALSE;
147+
return TRUE;
148148
#endif
149149
}
150150

0 commit comments

Comments
 (0)