2007-01-29 21:02:19 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#define FONT0 0x00000000
|
|
|
|
#define FONT1 0x10000000
|
|
|
|
|
|
|
|
#define BT_NORMAL 0x00000000
|
|
|
|
#define BT_NOFRAME 0x20000000
|
|
|
|
#define BT_HIDE 0x40000000
|
|
|
|
#define BT_DEL 0x80000000
|
|
|
|
|
|
|
|
#define EV_REDRAW 1
|
|
|
|
#define EV_KEY 2
|
|
|
|
#define EV_BUTTON 3
|
|
|
|
|
|
|
|
#define REL_SCREEN 0
|
|
|
|
#define REL_WINDOW 1
|
|
|
|
|
|
|
|
#define FILE_NOT_FOUND 5
|
|
|
|
#define FILE_EOF 6
|
|
|
|
|
|
|
|
|
|
|
|
typedef unsigned int DWORD;
|
|
|
|
typedef unsigned short int WORD;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{ DWORD pci_cmd;
|
|
|
|
DWORD irq;
|
|
|
|
DWORD glob_cntrl;
|
|
|
|
DWORD glob_sta;
|
|
|
|
DWORD codec_io_base;
|
|
|
|
DWORD ctrl_io_base;
|
|
|
|
DWORD codec_mem_base;
|
|
|
|
DWORD ctrl_mem_base;
|
|
|
|
DWORD codec_id;
|
|
|
|
} CTRL_INFO;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{ DWORD cmd;
|
|
|
|
DWORD offset;
|
|
|
|
DWORD r1;
|
|
|
|
DWORD count;
|
|
|
|
DWORD buff;
|
|
|
|
char r2;
|
|
|
|
char *name;
|
|
|
|
} FILEIO;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{ DWORD attr;
|
|
|
|
DWORD flags;
|
|
|
|
DWORD cr_time;
|
|
|
|
DWORD cr_date;
|
|
|
|
DWORD acc_time;
|
|
|
|
DWORD acc_date;
|
|
|
|
DWORD mod_time;
|
|
|
|
DWORD mod_date;
|
|
|
|
DWORD size;
|
|
|
|
DWORD size_high;
|
|
|
|
} FILEINFO;
|
|
|
|
|
|
|
|
void _stdcall InitHeap(int heap_size);
|
|
|
|
void* _stdcall UserAlloc(int size);
|
2007-02-06 23:32:53 +01:00
|
|
|
int _stdcall UserFree(void* p);
|
|
|
|
|
2007-02-25 10:21:19 +01:00
|
|
|
void _stdcall GetNotify(void *event);
|
|
|
|
|
|
|
|
void _stdcall CreateThread(void *fn, char *p_stack);
|
2007-01-29 21:02:19 +01:00
|
|
|
|
|
|
|
DWORD _stdcall GetMousePos(DWORD rel_type);
|
|
|
|
|
|
|
|
void _stdcall debug_out_hex(DWORD val);
|
|
|
|
void debug_out_str(char* str);
|
|
|
|
|
2007-02-06 23:32:53 +01:00
|
|
|
int _stdcall get_fileinfo(const char *name,FILEINFO* pinfo);
|
2007-06-22 12:29:55 +02:00
|
|
|
int _stdcall create_file(const char *name);
|
|
|
|
int _stdcall read_file (const char *name,char*buff,DWORD offset,DWORD count,DWORD *reads);
|
|
|
|
int _stdcall write_file(const char *name,const void *buff,DWORD offset,DWORD count,DWORD *writes);
|
2007-01-29 21:02:19 +01:00
|
|
|
|
|
|
|
//void exit();
|
2007-02-06 23:32:53 +01:00
|
|
|
int _stdcall get_key(int *key);
|
|
|
|
int _stdcall remap_key(int key);
|
|
|
|
|
2007-01-29 21:02:19 +01:00
|
|
|
int _cdecl get_button_id();
|
2007-02-06 23:32:53 +01:00
|
|
|
|
2007-01-29 21:02:19 +01:00
|
|
|
void delay(int val);
|
|
|
|
int wait_for_event(int time);
|
|
|
|
int wait_for_event_infinite();
|
|
|
|
void BeginDraw(void);
|
|
|
|
void EndDraw(void);
|
2007-02-25 10:21:19 +01:00
|
|
|
|
|
|
|
void _stdcall GetScreenSize(int *x, int*y);
|
2007-01-29 21:02:19 +01:00
|
|
|
void _stdcall DrawWindow(int x,int y, int sx, int sy,int workcolor,int style,
|
|
|
|
int captioncolor,int windowtype,int bordercolor);
|
|
|
|
void _stdcall debug_out(int ch);
|
|
|
|
void _stdcall make_button(int x, int y, int xsize, int ysize, int id, int color);
|
|
|
|
void _stdcall draw_bar(int x, int y, int xsize, int ysize, int color);
|
|
|
|
void _stdcall write_text(int x,int y,int color,char* text,int len);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
}
|
|
|
|
#endif
|