summaryrefslogtreecommitdiff
path: root/src/client.h
blob: 59aca5d35a4d8e562cfed65831aab3330545e4c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef _CLIENT
#define _CLIENT

#include "binding.h"

#if defined(__cplusplus)
    extern "C" {
#endif

typedef void* LPBIOSREGS;
#define ASSERT_HANDLER(pBoard)

typedef struct TAGCLIENTDATA
{
    ULONG          ulFrameBufferBase;
    ULONG          ulRegisterBase;
    pointer        pMga;
} CLIENTDATA, *LPCLIENTDATA;

#if defined(__cplusplus)
    }
#endif

#define ESC_CUSTOM_SET_FUNCTION_PTR     0x80000200
#define ESC_CUSTOM_GET_FUNCTION_PTR     0x80000201
#define ESC_CUSTOM_PATCH_HSL            0x80000202

#endif