CFTimeZone.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*
  2.      File:       CFTimeZone.h
  3.  
  4.      Contains:   CoreFoundation time zone
  5.  
  6.      Version:    Technology: Mac OS X
  7.                  Release:    QuickTime 6.0.2
  8.  
  9.      Copyright:  (c) 1999-2001 by Apple Computer, Inc., all rights reserved
  10.  
  11.      Bugs?:      For bug reports, consult the following page on
  12.                  the World Wide Web:
  13.  
  14.                      http://developer.apple.com/bugreporter/
  15.  
  16. */
  17. #ifndef __CFTIMEZONE__
  18. #define __CFTIMEZONE__
  19. #ifndef __CFBASE__
  20. #include "CFBase.h"
  21. #endif
  22. #ifndef __CFARRAY__
  23. #include "CFArray.h"
  24. #endif
  25. #ifndef __CFDATA__
  26. #include "CFData.h"
  27. #endif
  28. #ifndef __CFDATE__
  29. #include "CFDate.h"
  30. #endif
  31. #ifndef __CFDICTIONARY__
  32. #include "CFDictionary.h"
  33. #endif
  34. #ifndef __CFSTRING__
  35. #include "CFString.h"
  36. #endif
  37. #if PRAGMA_ONCE
  38. #pragma once
  39. #endif
  40. #ifdef __cplusplus
  41. extern "C" {
  42. #endif
  43. #if PRAGMA_IMPORT
  44. #pragma import on
  45. #endif
  46. #if PRAGMA_STRUCT_ALIGN
  47.     #pragma options align=mac68k
  48. #elif PRAGMA_STRUCT_PACKPUSH
  49.     #pragma pack(push, 2)
  50. #elif PRAGMA_STRUCT_PACK
  51.     #pragma pack(2)
  52. #endif
  53. /*
  54.     CFTimeZoneRef is defined in CFDate.h
  55. */
  56. #if PRAGMA_STRUCT_ALIGN
  57.     #pragma options align=reset
  58. #elif PRAGMA_STRUCT_PACKPUSH
  59.     #pragma pack(pop)
  60. #elif PRAGMA_STRUCT_PACK
  61.     #pragma pack()
  62. #endif
  63. #ifdef PRAGMA_IMPORT_OFF
  64. #pragma import off
  65. #elif PRAGMA_IMPORT
  66. #pragma import reset
  67. #endif
  68. #ifdef __cplusplus
  69. }
  70. #endif
  71. #endif /* __CFTIMEZONE__ */