forked from mia/Aegisub
2b13dfbb43
Originally committed to SVN as r2425.
38 lines
727 B
C
38 lines
727 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>
|
|
|
|
#ifdef WITH_FFMPEGSOURCE
|
|
/* FIXME: For FFMPEGSource2, this needs to be fixed but should be
|
|
harmless for the rest of aegisub. */
|
|
#define _snprintf snprintf
|
|
#define _ftelli64 ftello
|
|
#define _fseeki64 fseeko
|
|
#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
|
|
|
|
#include "res.h"
|
|
|
|
#endif /* _DEFINES_H */
|
|
|