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 UserServerDllInitialization ( ULONG  ,
LPWSTR *   
)

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 }


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.