[DINPUT]
[reactos.git] / reactos / dll / cpl / hotplug / hotplug.h
1 #pragma once
2
3 #define WIN32_NO_STATUS
4 #include <stdarg.h>
5 #include <windef.h>
6 #include <winbase.h>
7 #include <wingdi.h>
8 #include <winuser.h>
9 #include <wincon.h>
10 #include <commctrl.h>
11 #include <cpl.h>
12 #include <tchar.h>
13 #include <limits.h>
14
15 #include "resource.h"
16
17 // Globals
18 extern HINSTANCE hApplet;
19
20 // defines
21 #define NUM_APPLETS (1)
22
23 // global structures
24 typedef struct
25 {
26 int idIcon;
27 int idName;
28 int idDescription;
29 APPLET_PROC AppletProc;
30 }APPLET, *PAPPLET;
31
32
33
34 // hotplug.c
35 LONG
36 APIENTRY
37 InitApplet(
38 HWND hwnd,
39 UINT uMsg,
40 LPARAM wParam,
41 LPARAM lParam);