16 lines
273 B
C
16 lines
273 B
C
#ifdef _WIN32
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#define NOMINMAX
|
|
#include <Windows.h>
|
|
#include <unknwn.h>
|
|
#endif
|
|
|
|
/* C standard library*/
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <limits.h>
|
|
#include <math.h>
|
|
|
|
/* Runtime */
|
|
#include "runtime/runtime.h" |