1#ifndef MP4V2_PLATFORM_H
2#define MP4V2_PLATFORM_H
11#if defined( _WIN32 ) || defined( __MINGW32__ )
12# if defined( MP4V2_EXPORTS )
13# define MP4V2_EXPORT __declspec(dllexport)
14# elif defined( MP4V2_USE_DLL_IMPORT ) || !defined( MP4V2_USE_STATIC_LIB )
15# define MP4V2_EXPORT __declspec(dllimport)
20# define MP4V2_EXPORT __attribute__((visibility("default")))
23#if defined( __GNUC__ )
24# define MP4V2_DEPRECATED __attribute__((deprecated))
26# define MP4V2_DEPRECATED
51#if !defined( __cplusplus )
62typedef unsigned char bool;