added control panel template
[reactos.git] / reactos / lib / cpl / cplsample / cplsample.h
1 #ifndef __CPL_SAMPLE_H
2 #define __CPL_SAMPLE_H
3
4 typedef LONG (CALLBACK *APPLET_PROC)(VOID);
5
6 typedef struct
7 {
8 int idIcon;
9 int idName;
10 int idDescription;
11 APPLET_PROC AppletProc;
12 } APPLET, *PAPPLET;
13
14 extern HINSTANCE hApplet;
15
16 #endif /* __CPL_SAMPLE_H */
17
18 /* EOF */