Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef __DISPATCH_PUBLIC__
00022 #define __DISPATCH_PUBLIC__
00023
00029 #ifdef __APPLE__
00030 #include <Availability.h>
00031 #include <TargetConditionals.h>
00032 #endif
00033
00034 #ifndef __DISPATCH_BEGIN_DECLS
00035 #if defined(__cplusplus)
00036 # define __DISPATCH_BEGIN_DECLS extern "C" {
00037 # define __DISPATCH_END_DECLS }
00038 # else
00039 # define __DISPATCH_BEGIN_DECLS
00040 # define __DISPATCH_END_DECLS
00041 # endif
00042 #endif
00043
00044 #include <stddef.h>
00045 #if !defined(__GNUC__) && defined(_WIN32) && _MSC_VER < 1600
00046 # include "../../core/platform/windows/stdint.h"
00047 #else
00048 # include <stdint.h>
00049 #endif
00050 #ifndef _WIN32
00051 # include <stdbool.h>
00052 #endif
00053
00054 #define DISPATCH_API_VERSION 20090501
00055
00056 #ifndef __DISPATCH_INDIRECT__
00057 #define __DISPATCH_INDIRECT__
00058 #endif
00059
00060 #include "base.h"
00061 #include "object.h"
00062 #include "time.h"
00063 #include "queue.h"
00064 #include "source.h"
00065 #include "group.h"
00066 #include "semaphore.h"
00067 #include "once.h"
00068
00069 #undef __DISPATCH_INDIRECT__
00070
00073 #endif