mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-05 06:00:33 -04:00
68 lines
1.3 KiB
C
68 lines
1.3 KiB
C
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#ifndef _SKELDAL_PLATFORM_HEADER_
|
|
#define _SKELDAL_PLATFORM_HEADER_
|
|
|
|
#define BGSWITCHBIT 0x0020
|
|
|
|
#define SKELDALINI "wskeldal.ini"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
|
|
#define _KEYBRD_READY 0
|
|
#define _KEYBRD_READ 1
|
|
|
|
#define TIMERSPEED 20
|
|
|
|
uint32_t _bios_keybrd(int mode);
|
|
|
|
|
|
#define RGB888(r,g,b) ((unsigned short)((((r)<<8)&0xF800) | (((g)<<3) & 0x7C0) | ((b)>>3)))
|
|
#define RGB555(r,g,b) ((unsigned short)(((r)<<11) | ((g)<<6) | (b)))
|
|
|
|
|
|
|
|
|
|
void *map_file_to_memory(const char *name, size_t *sz);
|
|
void unmap_file(void *ptr, size_t sz);
|
|
|
|
void ShareCPU(void);
|
|
void SetWheelMapping(char up, char down);
|
|
|
|
char get_control_key_state(void);
|
|
char get_shift_key_state(void);
|
|
char get_capslock_state(void);
|
|
void display_error(const char *text);
|
|
|
|
int stricmp(const char *a, const char *b);
|
|
#define MIN(a, b) ((a)<(b)?(a):(b))
|
|
#define MAX(a, b) ((a)>(b)?(a):(b))
|
|
void strupr(char *c);
|
|
const char * int2ascii(int i, char *c, int radix);
|
|
|
|
uint32_t get_game_tick_count(void);
|
|
void sleep_ms(uint32_t);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
//------------- BGRAPH DX wrapper -------------------
|
|
#include "sdl/BGraph2.h"
|
|
|
|
#define WM_RELOADMAP (WM_APP+215)
|
|
#define E_RELOADMAP 40
|
|
|
|
typedef struct _ReloadMapInfo {
|
|
const char *fname;
|
|
int sektor;
|
|
} ReloadMapInfo;
|
|
|
|
|
|
|
|
#endif
|