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