2017-05-16 09:07:55 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define HD_LED 1
|
|
|
|
|
|
|
|
void DeleteCriticalSection(CRITICAL_SECTION * criticalSection);
|
|
|
|
void InitializeCriticalSection(CRITICAL_SECTION * criticalSection);
|
|
|
|
void EnterCriticalSection(CRITICAL_SECTION * criticalSection);
|
|
|
|
void LeaveCriticalSection(CRITICAL_SECTION * criticalSection);
|
|
|
|
void OutputDebugString(const char * str);
|
|
|
|
int MessageBox(HWND, const char *, const char *, UINT);
|
|
|
|
|
2017-05-20 20:37:18 +01:00
|
|
|
extern int g_nAltCharSetOffset; // alternate character set
|
|
|
|
|
2017-05-16 09:07:55 +01:00
|
|
|
HWND GetDesktopWindow();
|
|
|
|
void ExitProcess(int);
|