Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 86 of file init.c.
00088 { 00089 NTSTATUS Status = STATUS_SUCCESS; 00090 00091 DPRINT("WINSRV: %s called\n", __FUNCTION__); 00092 00093 // Get the listening port from csrsrv.dll 00094 WinSrvApiPort = CsrQueryApiPort (); 00095 if (NULL == WinSrvApiPort) 00096 { 00097 return STATUS_UNSUCCESSFUL; 00098 } 00099 // Register our message dispatcher 00100 Status = CsrAddStaticServerThread (ConStaticServerThread); 00101 if (NT_SUCCESS(Status)) 00102 { 00103 //TODO: perform the real console server internal initialization here 00104 } 00105 return Status; 00106 }