diff --git a/reactos/services/winlogon/winlogon.c b/reactos/services/winlogon/winlogon.c new file mode 100644 index 00000000000..4d556fd2551 --- /dev/null +++ b/reactos/services/winlogon/winlogon.c @@ -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 +#include + +/* FUNCTIONS *****************************************************************/ + +int main() +{ + char username[255]; + char password[255]; + + printf("Winlogon\n"); + printf("login: "); + fgets(username, 255, stdin); + printf("Password: "); + fgets(password, 255, stdin); +}