[DLLHOST] Add dllhost to make the device driver extractor for my Lenovo T400 happy

This commit is contained in:
Eric Kohl 2018-08-11 22:25:30 +02:00
parent cbfe4d023b
commit 2bbac12427
4 changed files with 40 additions and 0 deletions

View file

@ -3,6 +3,7 @@ add_subdirectory(autochk)
add_subdirectory(bootok)
add_subdirectory(chkdsk)
add_subdirectory(diskpart)
add_subdirectory(dllhost)
add_subdirectory(expand)
add_subdirectory(format)
add_subdirectory(lsass)

View file

@ -0,0 +1,5 @@
add_executable(dllhost dllhost.c dllhost.rc)
set_module_type(dllhost win32gui UNICODE)
add_importlibs(dllhost msvcrt kernel32 ntdll)
add_cd_file(TARGET dllhost DESTINATION reactos/system32 FOR all)

View file

@ -0,0 +1,30 @@
/*
* PROJECT: ReactOS DllHost
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: COM surrogate.
* COPYRIGHT: Copyright 2018 Eric Kohl
*/
/* INCLUDES *****************************************************************/
#include <windows.h>
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ****************************************************************/
INT
WINAPI
wWinMain(
HINSTANCE hInst,
HINSTANCE hPrevInst,
LPWSTR lpCmdLine,
INT nCmdShow)
{
DPRINT1("dllhost: %S\n", lpCmdLine);
return 0;
}
/* EOF */

View file

@ -0,0 +1,4 @@
#define REACTOS_STR_FILE_DESCRIPTION "COM Surrogate"
#define REACTOS_STR_INTERNAL_NAME "dllhost"
#define REACTOS_STR_ORIGINAL_FILENAME "dllhost.exe"
#include <reactos/version.rc>