mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-20 13:15:16 -04:00
minidump integration
This commit is contained in:
parent
96eaeb4851
commit
b459f2010e
9 changed files with 130 additions and 21 deletions
|
@ -2,9 +2,11 @@
|
|||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
#ifndef _SKELDAL_PLATFORM_HEADER_
|
||||
#define _SKELDAL_PLATFORM_HEADER_
|
||||
|
||||
|
||||
#define BGSWITCHBIT 0x8000
|
||||
|
||||
#ifdef _MSC_VER
|
||||
|
@ -124,6 +126,16 @@ typedef int (*LIST_FILES_CALLBACK)(const char *, LIST_FILE_TYPE , size_t, void *
|
|||
int list_files(const char *directory, int type, LIST_FILES_CALLBACK cb, void *ctx);
|
||||
|
||||
|
||||
#define WM_RELOADMAP (WM_APP+215)
|
||||
#define E_RELOADMAP 40
|
||||
|
||||
typedef struct _ReloadMapInfo {
|
||||
const char *fname;
|
||||
int sektor;
|
||||
} ReloadMapInfo;
|
||||
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
@ -135,14 +147,4 @@ void init_joystick(const INI_CONFIG_SECTION *section);
|
|||
char is_joystick_used();
|
||||
char is_joystick_enabled();
|
||||
|
||||
#define WM_RELOADMAP (WM_APP+215)
|
||||
#define E_RELOADMAP 40
|
||||
|
||||
typedef struct _ReloadMapInfo {
|
||||
const char *fname;
|
||||
int sektor;
|
||||
} ReloadMapInfo;
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue