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

多媒体编程

开发平台:

Visual C++

  1. /*
  2.      File:       Unicode.h
  3.  
  4.      Contains:   Types, constants, and prototypes for Unicode Converter
  5.  
  6.      Version:    Technology: Mac OS 8 (Tempo)
  7.                  Release:    QuickTime 6.0.2
  8.  
  9.      Copyright:  (c) 1994-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 __UNICODE__
  18. #define __UNICODE__
  19. #ifndef __UNICODECONVERTER__
  20. #include "UnicodeConverter.h"
  21. #endif
  22. #if PRAGMA_ONCE
  23. #pragma once
  24. #endif
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. #if PRAGMA_IMPORT
  29. #pragma import on
  30. #endif
  31. #if PRAGMA_STRUCT_ALIGN
  32.     #pragma options align=mac68k
  33. #elif PRAGMA_STRUCT_PACKPUSH
  34.     #pragma pack(push, 2)
  35. #elif PRAGMA_STRUCT_PACK
  36.     #pragma pack(2)
  37. #endif
  38. #if PRAGMA_STRUCT_ALIGN
  39.     #pragma options align=reset
  40. #elif PRAGMA_STRUCT_PACKPUSH
  41.     #pragma pack(pop)
  42. #elif PRAGMA_STRUCT_PACK
  43.     #pragma pack()
  44. #endif
  45. #ifdef PRAGMA_IMPORT_OFF
  46. #pragma import off
  47. #elif PRAGMA_IMPORT
  48. #pragma import reset
  49. #endif
  50. #ifdef __cplusplus
  51. }
  52. #endif
  53. #endif /* __UNICODE__ */