Stub
authorDavid Welch <welch@cwcom.net>
Sun, 6 Jun 1999 16:40:10 +0000 (16:40 +0000)
committerDavid Welch <welch@cwcom.net>
Sun, 6 Jun 1999 16:40:10 +0000 (16:40 +0000)
svn path=/trunk/; revision=538

reactos/services/winlogon/winlogon.c [new file with mode: 0644]

diff --git a/reactos/services/winlogon/winlogon.c b/reactos/services/winlogon/winlogon.c
new file mode 100644 (file)
index 0000000..4d556fd
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+ * COPYRIGHT:       See COPYING in the top level directory
+ * PROJECT:         ReactOS kernel
+ * FILE:            services/winlogon/winlogon.c
+ * PURPOSE:         Logon 
+ * PROGRAMMER:      David Welch (welch@cwcom.net)
+ * UPDATE HISTORY:
+ *                  Created 22/05/98
+ */
+
+/* INCLUDES *****************************************************************/
+
+//#include <ddk/ntddk.h>
+#include <stdio.h>
+
+/* FUNCTIONS *****************************************************************/
+
+int main()
+{
+   char username[255];
+   char password[255];
+   
+   printf("Winlogon\n");
+   printf("login: ");
+   fgets(username, 255, stdin);
+   printf("Password: ");
+   fgets(password, 255, stdin);
+}