2018-07-01 09:02:10 +00:00
|
|
|
#ifndef _LICCPA_H
|
|
|
|
#define _LICCPA_H
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#define _INC_WINDOWS
|
|
|
|
#define COM_NO_WINDOWS_H
|
|
|
|
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <winreg.h>
|
|
|
|
#include <wingdi.h>
|
|
|
|
#include <wincon.h>
|
|
|
|
#include <devguid.h>
|
|
|
|
#include <shlobj.h>
|
|
|
|
#include <cpl.h>
|
|
|
|
#include <regstr.h>
|
|
|
|
|
|
|
|
#include "resource.h"
|
2005-07-31 12:11:56 +00:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int idIcon;
|
|
|
|
int idName;
|
|
|
|
int idDescription;
|
|
|
|
APPLET_PROC AppletProc;
|
|
|
|
} APPLET, *PAPPLET;
|
|
|
|
|
|
|
|
extern HINSTANCE hApplet;
|
|
|
|
|
2018-07-01 09:02:10 +00:00
|
|
|
#endif /* _LICCPA_H */
|
|
|
|
|
2005-07-31 12:11:56 +00:00
|
|
|
/* EOF */
|