mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 04:53:04 +00:00
20 lines
319 B
C
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 */
|