forked from mia/Aegisub
05ae13a8ab
* Rename include guard to AGI_PRE. Originally committed to SVN as r3509.
27 lines
467 B
C
27 lines
467 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
|
|
|
|
// 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 */
|
|
|
|
|