Commit in reactos/lib/msgina on MAIN
msgina.c+16-41.7 -> 1.8
stubs.c+1-131.5 -> 1.6
+17-17
2 modified files
implemented WlxDisplaySASNotice()

reactos/lib/msgina
msgina.c 1.7 -> 1.8
diff -u -r1.7 -r1.8
--- msgina.c	27 Dec 2003 11:09:58 -0000	1.7
+++ msgina.c	27 Mar 2004 23:24:51 -0000	1.8
@@ -16,7 +16,7 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
-/* $Id: msgina.c,v 1.7 2003/12/27 11:09:58 weiden Exp $
+/* $Id: msgina.c,v 1.8 2004/03/27 23:24:51 weiden Exp $
  *
  * PROJECT:         ReactOS msgina.dll
  * FILE:            lib/msgina/msgina.c
@@ -203,7 +203,7 @@
   if(RegOpenKeyExW(HKEY_LOCAL_MACHINE, 
                   L"SOFTWARE\\ReactOS\\Windows NT\\CurrentVersion\\Winlogon", 
                   0, KEY_QUERY_VALUE, &hKey) != ERROR_SUCCESS)
-  {
+  {DbgPrint("GINA: Failed: 1\n");
     VirtualFree(pEnvironment, 0, MEM_RELEASE);
     return FALSE;
   }
@@ -211,7 +211,7 @@
   if((RegQueryValueEx(hKey, L"Userinit", NULL, &ValueType, (LPBYTE)pszUserInitApp, 
                      &BufSize) != ERROR_SUCCESS) || 
                      !((ValueType == REG_SZ) || (ValueType == REG_EXPAND_SZ)))
-  {
+  {DbgPrint("GINA: Failed: 2\n");
     RegCloseKey(hKey);
     VirtualFree(pEnvironment, 0, MEM_RELEASE);
     return FALSE;
@@ -243,7 +243,7 @@
                             NULL,
                             &si,
                             &pi);
-  
+  if(!Ret) DbgPrint("GINA: Failed: 3\n");
   VirtualFree(pEnvironment, 0, MEM_RELEASE);
   return Ret;
 }
@@ -447,6 +447,18 @@
 }
 
 
+/*
+ * @implemented
+ */
+VOID WINAPI
+WlxDisplaySASNotice(
+	PVOID pWlxContext)
+{
+  PGINA_CONTEXT pgContext = (PGINA_CONTEXT)pWlxContext;
+  pgContext->pWlxFuncs->WlxSasNotify(pgContext->hWlx, WLX_SAS_TYPE_CTRL_ALT_DEL);
+}
+
+
 BOOL STDCALL
 DllMain(
 	HINSTANCE hinstDLL,

reactos/lib/msgina
stubs.c 1.5 -> 1.6
diff -u -r1.5 -r1.6
--- stubs.c	1 Dec 2003 18:21:04 -0000	1.5
+++ stubs.c	27 Mar 2004 23:24:51 -0000	1.6
@@ -1,4 +1,4 @@
-/* $Id: stubs.c,v 1.5 2003/12/01 18:21:04 weiden Exp $
+/* $Id: stubs.c,v 1.6 2004/03/27 23:24:51 weiden Exp $
  *
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS msgina.dll
@@ -53,18 +53,6 @@
 /*
  * @unimplemented
  */
-VOID WINAPI
-WlxDisplaySASNotice(
-	PVOID pWlxContext)
-{
-  UNIMPLEMENTED;
-  return;
-}
-
-
-/*
- * @unimplemented
- */
 BOOL WINAPI
 WlxIsLockOk(
 	PVOID pWlxContext)
CVSspam 0.2.8