tahoma2d/toonz/sources/include/movsettings.h
2016-05-17 00:04:11 +09:00

78 lines
1.6 KiB
C

#pragma once
#ifndef TMOVSETTINGS_INCLUDED
#define TMOVSETTINGS_INCLUDED
#undef DVAPI
#undef DVVAR
#ifdef TNZCORE_EXPORTS
#define DVAPI DV_EXPORT_API
#define DVVAR DV_EXPORT_VAR
#else
#define DVAPI DV_IMPORT_API
#define DVVAR DV_IMPORT_VAR
#endif
#if !(defined(x64) || defined(__LP64__) || defined(LINUX))
#ifdef _WIN32
#define list List
#define map Map
#define iterator Iterator
#define float_t Float_t
#define GetProcessInformation GetProcessInformation_
#define int_fast8_t QT_int_fast8_t
#define int_fast16_t QT_int_fast16_t
#define uint_fast16_t QT_uint_fast16_t
#include "QTML.h"
#include "Movies.h"
#include "Script.h"
#include "FixMath.h"
#include "Sound.h"
#include "QuickTimeComponents.h"
#include "tquicktime.h"
#undef list
#undef map
#undef iterator
#undef float_t
#undef GetProcessInformation
#undef QT_int_fast8_t
#undef QT_int_fast16_t
#undef QT_uint_fast16_t
#include "texception.h"
#include "tpropertytype.h"
//#include "timageinfo.h"
//#include "tlevel_io.h"
#include "tproperty.h"
#else // _WIN32
#define list List
#define map Map
#define iterator Iterator
#undef float_t
#include <Carbon/Carbon.h>
#include <QuickTime/Movies.h>
#include <QuickTime/ImageCompression.h>
#include <QuickTime/QuickTimeComponents.h>
#undef list
#undef map
#undef iterator
#undef float_t
#endif // !_WIN32
void DVAPI fromPropertiesToAtoms(TPropertyGroup &pg, QTAtomContainer &atoms);
void DVAPI fromAtomsToProperties(const QTAtomContainer &atoms, TPropertyGroup &pg);
#endif //!64 bit
void DVAPI openMovSettingsPopup(TPropertyGroup *props, bool macBringToFront = false);
#endif