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>
|
|
|
|
|
2007-08-29 15:36:30 +02:00
|
|
|
// 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;
|
2006-03-25 17:14:24 +01:00
|
|
|
#define abs64 llabs
|
|
|
|
|
|
|
|
#endif /* _DEFINES_H */
|
|
|
|
|