mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 22:52:46 +00:00
26 lines
683 B
C
26 lines
683 B
C
|
/*
|
||
|
* COPYRIGHT: GPL - See COPYING in the top level directory
|
||
|
* PROJECT: ReactOS-on-ReactOS-16bit (aka. RoR16 or WoW16)
|
||
|
* FILE: subsystems/mvdm/wow16/user.c
|
||
|
* PURPOSE: 16-bit USER stub module
|
||
|
* PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
||
|
*/
|
||
|
|
||
|
/* INCLUDES *******************************************************************/
|
||
|
|
||
|
/* PSDK Headers */
|
||
|
#define WIN32_NO_STATUS
|
||
|
#include <windef.h>
|
||
|
#include <winbase.h>
|
||
|
|
||
|
#define NDEBUG
|
||
|
#include <debug.h>
|
||
|
|
||
|
/* PUBLIC FUNCTIONS ***********************************************************/
|
||
|
|
||
|
INT main(INT argc, const CHAR *argv[])
|
||
|
{
|
||
|
OutputDebugStringA("USER.EXE: stub\n");
|
||
|
return 0;
|
||
|
}
|