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.
37 lines
743 B
37 lines
743 B
#pragma once |
|
|
|
#include <ctype.h> |
|
#include <math.h> |
|
// work around https://reviews.llvm.org/D51265 |
|
#ifdef __APPLE__ |
|
#include "macos_stdarg.h" |
|
#else |
|
#include <stdarg.h> |
|
#endif |
|
#include <stdint.h> |
|
#include <stdio.h> |
|
#include <stdlib.h> |
|
#include <string.h> |
|
#include <time.h> |
|
// For _rotr() |
|
#ifdef DEVILUTION_ENGINE |
|
#include <x86intrin.h> |
|
#endif |
|
|
|
#ifndef _WIN32 |
|
#define __int8 char |
|
#define __int16 short |
|
#define __int32 int |
|
#define __int64 long long __attribute__((aligned(8))) |
|
#endif |
|
|
|
#include "miniwin/misc.h" |
|
#include "miniwin/com.h" |
|
#include "miniwin/ui.h" |
|
#include "miniwin/thread.h" |
|
#include "miniwin/rand.h" |
|
|
|
#ifdef DEVILUTION_ENGINE |
|
#include "miniwin/misc_macro.h" |
|
#include "miniwin/com_macro.h" |
|
#endif
|
|
|