svn path=/trunk/; revision=538
This commit is contained in:
David Welch 1999-06-06 16:40:10 +00:00
parent 9dc68f3b65
commit 31268dc661

View file

@ -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);
}