home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / Interfaces&Libraries / Universal / Interfaces / CIncludes / Unicode.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-08-17  |  1.0 KB  |  67 lines  |  [TEXT/MPS ]

  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:    Universal Interfaces 3.2
  8.  
  9.      Copyright:    © 1994-1998 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.  
  20. #ifndef __UNICODECONVERTER__
  21. #include <UnicodeConverter.h>
  22. #endif
  23.  
  24.  
  25.  
  26. #if PRAGMA_ONCE
  27. #pragma once
  28. #endif
  29.  
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif
  33.  
  34. #if PRAGMA_IMPORT
  35. #pragma import on
  36. #endif
  37.  
  38. #if PRAGMA_STRUCT_ALIGN
  39.     #pragma options align=mac68k
  40. #elif PRAGMA_STRUCT_PACKPUSH
  41.     #pragma pack(push, 2)
  42. #elif PRAGMA_STRUCT_PACK
  43.     #pragma pack(2)
  44. #endif
  45.  
  46.  
  47. #if PRAGMA_STRUCT_ALIGN
  48.     #pragma options align=reset
  49. #elif PRAGMA_STRUCT_PACKPUSH
  50.     #pragma pack(pop)
  51. #elif PRAGMA_STRUCT_PACK
  52.     #pragma pack()
  53. #endif
  54.  
  55. #ifdef PRAGMA_IMPORT_OFF
  56. #pragma import off
  57. #elif PRAGMA_IMPORT
  58. #pragma import reset
  59. #endif
  60.  
  61. #ifdef __cplusplus
  62. }
  63. #endif
  64.  
  65. #endif /* __UNICODE__ */
  66.  
  67.