reactos/reactos/dll/cpl/appwiz/appwiz.h
Ged Murphy d22f0829eb reshuffling of dlls
svn path=/trunk/; revision=21033
2006-02-17 00:40:44 +00:00

20 lines
319 B
C

#ifndef __CPL_APPWIZ_H
#define __CPL_APPWIZ_H
typedef LONG (CALLBACK *CPLAPPLET_PROC)(VOID);
typedef struct
{
int idIcon;
int idName;
int idDescription;
CPLAPPLET_PROC AppletProc;
} APPLET, *PAPPLET;
extern HINSTANCE hApplet;
void ShowLastWin32Error(HWND hWndOwner);
#endif /* __CPL_APPWIZ_H */
/* EOF */