forked from mia/Aegisub
7f6c3a4ba1
Originally committed to SVN as r1111.
45 lines
665 B
C
45 lines
665 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>
|
|
|
|
typedef int64_t __int64;
|
|
typedef uint64_t __uint64;
|
|
#define abs64 llabs
|
|
|
|
/*
|
|
#if defined(HAVE_ASA) && defined(HAVE_ASA_H)
|
|
#define USE_ASA 1
|
|
#endif
|
|
#if defined(HAVE_LIBSSA) && defined(HAVE_LIBSSA_LIBSSA_H)
|
|
#define USE_LIBSSA 1
|
|
#endif
|
|
|
|
#define USE_PRS 0
|
|
#ifndef USE_FEXTRACKER
|
|
#define USE_FEXTRACKER 0
|
|
#endif
|
|
#ifndef USE_ASA
|
|
#define USE_ASA 0
|
|
#endif
|
|
*/
|
|
|
|
#include "res.h"
|
|
|
|
#endif /* _DEFINES_H */
|
|
|