On FAT16 partitions smaller than 128MB, the cluster size is 2048, which is
[reactos.git] / reactos / subsys / smss / smss.c
index d95e54a..4aad777 100644 (file)
@@ -1,9 +1,9 @@
 /* $Id$
  *
  * smss.c - Session Manager
- * 
+ *
  * ReactOS Operating System
- * 
+ *
  * --------------------------------------------------------------------
  *
  * This software is free software; you can redistribute it and/or
  * You should have received a copy of the GNU General Public License
  * along with this software; see the file COPYING.LIB. If not, write
  * to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
- * MA 02139, USA.  
+ * MA 02139, USA.
  *
  * --------------------------------------------------------------------
  */
 #include "smss.h"
-#include <rosrtl/string.h>
 #include <reactos/buildno.h>
 
 #define NDEBUG
 #include <debug.h>
 
-HANDLE SmSsProcessId = 0;
+ULONG SmSsProcessId = 0;
 
 /* Native image's entry point */
 
-VOID STDCALL
-NtProcessStartup(PPEB Peb)
+NTSTATUS __cdecl _main(int argc,
+                       char *argv[],
+                       char *envp[],
+                       ULONG DebugFlag)
 {
-  NTSTATUS Status;
+  NTSTATUS Status = STATUS_SUCCESS;
   PROCESS_BASIC_INFORMATION PBI = {0};
-  
-  DisplayString(L"SMSS\n");
-  PrintString("ReactOS Session Manager %s (Build %s)\n",
-            KERNEL_RELEASE_STR,
-            KERNEL_VERSION_BUILD_STR);
 
   /* Lookup yourself */
   Status = NtQueryInformationProcess (NtCurrentProcess(),
@@ -53,10 +49,12 @@ NtProcessStartup(PPEB Peb)
                                      NULL);
   if(NT_SUCCESS(Status))
   {
-         SmSsProcessId = PBI.UniqueProcessId;
+         SmSsProcessId = (ULONG) PBI.UniqueProcessId;
   }
   /* Initialize the system */
   Status = InitSessionManager();
+  /* Watch required subsystems TODO */
+#if 0
   if (!NT_SUCCESS(Status))
     {
       int i;
@@ -91,6 +89,8 @@ ByeBye:
                   0,0,0,0,0);
 
 //   NtTerminateProcess(NtCurrentProcess(), 0);
+#endif
+       return NtTerminateThread(NtCurrentThread(), Status);
 }
 
 /* EOF */