mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-19 21:22:17 +00:00
9c2a8a5658
This was SVN commit r163.
19 lines
300 B
C
Executable File
19 lines
300 B
C
Executable File
#ifndef SYSDEP_H__
|
|
#define SYSDEP_H__
|
|
|
|
#include "win/win.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void display_msg(const wchar_t* caption, const wchar_t* msg);
|
|
extern void debug_out(const char* fmt, ...);
|
|
|
|
extern void check_heap();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // #ifndef SYSDEP_H__
|