diff --git a/reactos/subsystems/mvdm/CMakeLists.txt b/reactos/subsystems/mvdm/CMakeLists.txt index 1238423f7d0..c50893c67d5 100644 --- a/reactos/subsystems/mvdm/CMakeLists.txt +++ b/reactos/subsystems/mvdm/CMakeLists.txt @@ -10,4 +10,4 @@ if(ARCH STREQUAL "i386") add_subdirectory(samples) endif() add_subdirectory(vdmdbg) -#add_subdirectory(wow16) +add_subdirectory(wow16) diff --git a/reactos/subsystems/mvdm/wow16/CMakeLists.txt b/reactos/subsystems/mvdm/wow16/CMakeLists.txt new file mode 100644 index 00000000000..116218c3440 --- /dev/null +++ b/reactos/subsystems/mvdm/wow16/CMakeLists.txt @@ -0,0 +1,2 @@ + +add_subdirectory(user) diff --git a/reactos/subsystems/mvdm/wow16/user/CMakeLists.txt b/reactos/subsystems/mvdm/wow16/user/CMakeLists.txt new file mode 100644 index 00000000000..dfe7dd9726e --- /dev/null +++ b/reactos/subsystems/mvdm/wow16/user/CMakeLists.txt @@ -0,0 +1,5 @@ + +add_executable(user user.c) +set_module_type(user win32gui ENTRYPOINT mainCRTStartup) +add_importlibs(user msvcrt kernel32) +add_cd_file(TARGET user DESTINATION reactos/system32 FOR all) diff --git a/reactos/subsystems/mvdm/wow16/user/user.c b/reactos/subsystems/mvdm/wow16/user/user.c new file mode 100644 index 00000000000..cb3890267ed --- /dev/null +++ b/reactos/subsystems/mvdm/wow16/user/user.c @@ -0,0 +1,25 @@ +/* + * 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; +}