Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

NTSTATUS WINAPI ConServerDllInitialization ( ULONG  ,
LPWSTR *   
)

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 }


Generated on Thu Feb 9 06:02:21 2012 for ReactOS by doxygen 1.6.3

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.