Skip to content
Snippets Groups Projects
Commit 26c21f1f authored by Ulrich Weigand's avatar Ulrich Weigand Committed by Alexandre Julliard
Browse files

Load USER32.DLL before calling UserSignalProc.

parent a9238080
No related branches found
No related tags found
No related merge requests found
......@@ -439,6 +439,10 @@ void PROCESS_Start(void)
* 16-bit stack must be set up, which it is only after TASK_Create
* in the case of a 16-bit process. Thus, we send the signal here.
*/
/* Load USER32.DLL before calling UserSignalProc (relay debugging!) */
LoadLibraryA( "USER32.DLL" );
PROCESS_CallUserSignalProc( USIG_PROCESS_CREATE, 0 );
PROCESS_CallUserSignalProc( USIG_THREAD_INIT, 0 ); /* for initial thread */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment