forked from mia/Aegisub
7e9f898c34
* Remove res.h from config/config_unix.h * Add posix/res.h to config.h (temp) Originally committed to SVN as r2624.
28 lines
486 B
C
28 lines
486 B
C
#pragma once
|
|
|
|
#ifndef _DEFINES_H
|
|
#define _DEFINES_H
|
|
|
|
#define __AVISYNTH_H__
|
|
#define WX_PRECOMP
|
|
|
|
#include "acconf.h"
|
|
|
|
#ifdef HAVE_STDINT_H
|
|
#define __STDC_CONSTANT_MACROS 1
|
|
#include <stdint.h>
|
|
#endif
|
|
#ifdef HAVE_INTTYPES_H
|
|
#include <inttypes.h>
|
|
#endif
|
|
|
|
#include <stdwx.h>
|
|
|
|
// These shouldn't be needed any longer, if there are
|
|
// any occurrences of __int64 replace them with long long.
|
|
//typedef int64_t __int64;
|
|
//typedef uint64_t __uint64;
|
|
#define abs64 llabs
|
|
|
|
#endif /* _DEFINES_H */
|
|
|