Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 108 of file init.c.
00110 { 00111 NTSTATUS Status = STATUS_SUCCESS; 00112 00113 DPRINT("WINSRV: %s called\n", __FUNCTION__); 00114 00115 // Get the listening port from csrsrv.dll 00116 WinSrvApiPort = CsrQueryApiPort (); 00117 if (NULL == WinSrvApiPort) 00118 { 00119 return STATUS_UNSUCCESSFUL; 00120 } 00121 // Register our message dispatcher 00122 Status = CsrAddStaticServerThread (UserStaticServerThread); 00123 if (NT_SUCCESS(Status)) 00124 { 00125 //TODO: perform the real user server internal initialization here 00126 } 00127 return Status; 00128 }