diff options
Diffstat (limited to 'common/quicktime_win32/CoreFoundation.h')
| -rw-r--r-- | common/quicktime_win32/CoreFoundation.h | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/common/quicktime_win32/CoreFoundation.h b/common/quicktime_win32/CoreFoundation.h new file mode 100644 index 0000000..9a74ece --- /dev/null +++ b/common/quicktime_win32/CoreFoundation.h @@ -0,0 +1,111 @@ +/* + File: CoreFoundation.h + + Contains: CoreFoundation master header + + Version: QuickTime 7.3 + + Copyright: (c) 2007 (c) 1999-2001 by Apple Computer, Inc., all rights reserved + + Bugs?: For bug reports, consult the following page on + the World Wide Web: + + http://developer.apple.com/bugreporter/ + +*/ + +#ifndef __COREFOUNDATION__ +#define __COREFOUNDATION__ + +#ifndef __CFBASE__ +#include <CFBase.h> +#endif + +#ifndef __CFARRAY__ +#include <CFArray.h> +#endif + +#ifndef __CFBAG__ +#include <CFBag.h> +#endif + +#ifndef __CFBUNDLE__ +#include <CFBundle.h> +#endif + +#ifndef __CFCHARACTERSET__ +#include <CFCharacterSet.h> +#endif + +#ifndef __CFDATA__ +#include <CFData.h> +#endif + +#ifndef __CFDATE__ +#include <CFDate.h> +#endif + +#ifndef __CFDICTIONARY__ +#include <CFDictionary.h> +#endif + +#ifndef __CFNUMBER__ +#include <CFNumber.h> +#endif + +#ifndef __CFPLUGIN__ +#include <CFPlugIn.h> +#endif + +#ifndef __CFPREFERENCES__ +#include <CFPreferences.h> +#endif + +#ifndef __CFPROPERTYLIST__ +#include <CFPropertyList.h> +#endif + +#ifndef __CFSET__ +#include <CFSet.h> +#endif + +#ifndef __CFSTRING__ +#include <CFString.h> +#endif + +#ifndef __CFSTRINGENCODINGEXT__ +#include <CFStringEncodingExt.h> +#endif + +#ifndef __CFTIMEZONE__ +#include <CFTimeZone.h> +#endif + +#ifndef __CFTREE__ +#include <CFTree.h> +#endif + +#ifndef __CFURL__ +#include <CFURL.h> +#endif + +#ifndef __CFURLACCESS__ +#include <CFURLAccess.h> +#endif + +#ifndef __CFUUID__ +#include <CFUUID.h> +#endif + +#ifndef __CFXMLNODE__ +#include <CFXMLNode.h> +#endif + +#ifndef __CFXMLPARSER__ +#include <CFXMLParser.h> +#endif + + + +#endif /* __COREFOUNDATION__ */ + |