mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 06:33:08 +00:00
2fdb4d99c7
- Add the missing CMakeLists.txt file. - Comment-out an unused variable. - Make WM_INITDIALOG return TRUE, so that the dialog gets visible.
34 lines
506 B
C
34 lines
506 B
C
#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"
|
|
|
|
typedef struct
|
|
{
|
|
int idIcon;
|
|
int idName;
|
|
int idDescription;
|
|
APPLET_PROC AppletProc;
|
|
} APPLET, *PAPPLET;
|
|
|
|
extern HINSTANCE hApplet;
|
|
|
|
#endif /* _LICCPA_H */
|
|
|
|
/* EOF */
|