reactos/reactos/dll/cpl/console/console.h
Amine Khaldi 50e209f423 [CPLS]
* Add header guards to the main headers.
CORE-7716

svn path=/trunk/; revision=61993
2014-02-05 18:17:27 +00:00

38 lines
783 B
C

#ifndef CONSOLE_H__
#define CONSOLE_H__
#include <limits.h> // just for UINT_MAX in layout.c
#include <tchar.h>
#define WIN32_NO_STATUS
#include <windef.h>
#include <winbase.h>
#include <wingdi.h>
#include <winuser.h>
#include <wincon.h>
#include <commctrl.h>
#include <cpl.h>
#include "resource.h"
/* Shared header with the GUI Terminal Front-End from consrv.dll */
#include "consolecpl.h"
typedef struct
{
int idIcon;
int idName;
int idDescription;
APPLET_PROC AppletProc;
} APPLET, *PAPPLET;
BOOL ApplyConsoleInfo(HWND hwndDlg, PCONSOLE_PROPS pConInfo);
VOID PaintConsole(LPDRAWITEMSTRUCT drawItem, PCONSOLE_PROPS pConInfo);
VOID PaintText(LPDRAWITEMSTRUCT drawItem, PCONSOLE_PROPS pConInfo);
// Globals
extern HINSTANCE hApplet;
#endif /* CONSOLE_H__ */