/* * 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 #include #define NDEBUG #include /* PUBLIC FUNCTIONS ***********************************************************/ INT main(INT argc, const CHAR *argv[]) { OutputDebugStringA("USER.EXE: stub\n"); return 0; }