1 /* 2 * PROJECT: ReactOS-on-ReactOS-16bit (aka. RoR16 or WoW16) 3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) 4 * PURPOSE: 16-bit USER stub module 5 * COPYRIGHT: Copyright 2017-2018 Hermes Belusca-Maito 6 */ 7 8 /* INCLUDES *******************************************************************/ 9 10 /* PSDK Headers */ 11 #define WIN32_NO_STATUS 12 #include <windef.h> 13 #include <winbase.h> 14 15 #define NDEBUG 16 #include <debug.h> 17 18 /* PUBLIC FUNCTIONS ***********************************************************/ 19 20 INT main(INT argc, const CHAR *argv[]) 21 { 22 OutputDebugStringA("USER.EXE: stub\n"); 23 return 0; 24 } 25