mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Stub
svn path=/trunk/; revision=538
This commit is contained in:
parent
9dc68f3b65
commit
31268dc661
1 changed files with 28 additions and 0 deletions
28
reactos/services/winlogon/winlogon.c
Normal file
28
reactos/services/winlogon/winlogon.c
Normal 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);
|
||||||
|
}
|
Loading…
Reference in a new issue