[rshell]
[reactos.git] / 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: DLL for RunOnceEx Keys
6 * PROGRAMMERS: Copyright 2013 Robert Naumann
7 */
8
9
10 #define WIN32_NO_STATUS
11 #include <stdarg.h>
12 #include <windef.h>
13 #include <winbase.h>
14 #include <winreg.h>
15 #include <winuser.h>
16 #include <setupapi.h>
17
18 #define NDEBUG
19 #include <debug.h>
20
21 HINSTANCE hInstance;
22
23 BOOL
24 WINAPI
25 DllMain(HINSTANCE hinstDLL,
26 DWORD dwReason,
27 LPVOID reserved)
28 {
29 switch (dwReason)
30 {
31 case DLL_PROCESS_ATTACH:
32 break;
33 case DLL_PROCESS_DETACH:
34 hInstance = hinstDLL;
35 break;
36 }
37
38 return TRUE;
39 }
40
41 VOID WINAPI RunOnceExProcess(HWND hwnd, HINSTANCE hInst, LPCSTR path, int nShow)
42 {
43 DPRINT1("RunOnceExProcess() not implemented\n");
44 }