2006-03-25 17:14:24 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifndef _DEFINES_H
|
|
|
|
#define _DEFINES_H
|
|
|
|
|
|
|
|
#define __AVISYNTH_H__
|
|
|
|
#define WX_PRECOMP
|
|
|
|
|
2006-03-26 03:38:10 +02:00
|
|
|
#include "acconf.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_STDINT_H
|
2007-03-31 23:28:43 +02:00
|
|
|
#define __STDC_CONSTANT_MACROS 1
|
2006-03-25 17:14:24 +01:00
|
|
|
#include <stdint.h>
|
2006-03-26 03:38:10 +02:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
|
|
#include <inttypes.h>
|
|
|
|
#endif
|
2006-03-25 17:14:24 +01:00
|
|
|
|
2007-01-24 03:35:09 +01:00
|
|
|
#include <stdwx.h>
|
|
|
|
|
2006-03-25 17:14:24 +01:00
|
|
|
typedef int64_t __int64;
|
|
|
|
typedef uint64_t __uint64;
|
|
|
|
#define abs64 llabs
|
|
|
|
|
|
|
|
#include "res.h"
|
|
|
|
|
|
|
|
#endif /* _DEFINES_H */
|
|
|
|
|