You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
666 B
32 lines
666 B
#pragma once |
|
|
|
#include <ctype.h> |
|
#include <math.h> |
|
// work around https://reviews.llvm.org/D51265 |
|
#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) |
|
#include "macos_stdarg.h" |
|
#else |
|
#include <stdarg.h> |
|
#endif |
|
#include <stdint.h> |
|
#include <stdio.h> |
|
#include <stdlib.h> |
|
#include <string.h> |
|
#include <time.h> |
|
|
|
#ifndef _WIN32 |
|
#define __int8 char |
|
#define __int16 short |
|
#define __int32 int |
|
#define __int64 long long __attribute__((aligned(8))) |
|
#endif |
|
|
|
#include "miniwin/misc.h" |
|
#include "storm_full.h" |
|
|
|
#ifndef MAX_PATH |
|
#define MAX_PATH DVL_MAX_PATH |
|
#endif |
|
#ifdef DEVILUTION_ENGINE |
|
#include "miniwin/misc_macro.h" |
|
#endif
|
|
|