1 /* 2 * PROJECT: ReactOS DllHost 3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) 4 * PURPOSE: COM surrogate. 5 * COPYRIGHT: Copyright 2018 Eric Kohl 6 */ 7 8 /* INCLUDES *****************************************************************/ 9 10 #include <windows.h> 11 12 #define NDEBUG 13 #include <debug.h> 14 15 /* FUNCTIONS ****************************************************************/ 16 17 INT 18 WINAPI 19 wWinMain( 20 HINSTANCE hInst, 21 HINSTANCE hPrevInst, 22 LPWSTR lpCmdLine, 23 INT nCmdShow) 24 { 25 DPRINT1("dllhost: %S\n", lpCmdLine); 26 27 return 0; 28 } 29 30 /* EOF */ 31