[IERNONCE] Add resources, update file header, remove unneeded includes CORE-7194
[reactos.git] / reactos / dll / win32 / iernonce / iernonce.c
1 /*
2 * PROJECT: ReactOS system libraries
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: dll\win32\iernonce\iernonce.c
5 * PURPOSE: ReactOS Extended RunOnce processing with UI
6 * PROGRAMMERS: Copyright 2013-2016 Robert Naumann
7 */
8
9
10 #define WIN32_NO_STATUS
11 #include <windef.h>
12 #include <winbase.h>
13
14 #define NDEBUG
15 #include <debug.h>
16
17 HINSTANCE hInstance;
18
19 BOOL
20 WINAPI
21 DllMain(HINSTANCE hinstDLL,
22 DWORD dwReason,
23 LPVOID reserved)
24 {
25 switch (dwReason)
26 {
27 case DLL_PROCESS_ATTACH:
28 break;
29 case DLL_PROCESS_DETACH:
30 hInstance = hinstDLL;
31 break;
32 }
33
34 return TRUE;
35 }
36
37 VOID WINAPI RunOnceExProcess(HWND hwnd, HINSTANCE hInst, LPCSTR path, int nShow)
38 {
39 DPRINT1("RunOnceExProcess() not implemented\n");
40 }