forked from mia/Aegisub
4036f73e43
Originally committed to SVN as r240.
22 lines
290 B
C
22 lines
290 B
C
#pragma once
|
|
|
|
#ifndef _DEFINES_H
|
|
#define _DEFINES_H
|
|
|
|
#define __AVISYNTH_H__
|
|
#define WX_PRECOMP
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef int64_t __int64;
|
|
typedef uint64_t __uint64;
|
|
#define abs64 llabs
|
|
|
|
#define NO_SPELLCHECKER
|
|
#define NO_FEX
|
|
#define USE_LAVC
|
|
|
|
#include "res.h"
|
|
|
|
#endif /* _DEFINES_H */
|
|
|