]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/hfs/hfscommon/headers/HFSUnicodeWrappers.h
xnu-517.7.7.tar.gz
[apple/xnu.git] / bsd / hfs / hfscommon / headers / HFSUnicodeWrappers.h
index f32f517eaa90be0ccfa658f8078b220ac24063b1..56a7e4bdddedffe1f5d203d1ab3943ec3de9dcf5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
          <HFS1>        12/12/96        msd             first checked in
 
 */
+#ifndef _HFSUNICODEWRAPPERS_
+#define _HFSUNICODEWRAPPERS_
 
-#include "../../hfs_macos_defs.h"
-#include "../../hfs_format.h"
-
-// Encoding vs. Index
-//
-// For runtime table lookups and for the volume encoding bitmap we
-// need to map some encodings to keep them in a reasonable range.
-//
-
-enum {
-       kIndexMacUkrainian      = 48,           // MacUkrainian encoding is 152
-       kIndexMacFarsi          = 49            // MacFarsi encoding is 140
-};
+#include <sys/appleapiopts.h>
 
-#define MapEncodingToIndex(e) \
-       ( (e) < 48 ? (e) : ( (e) == kTextEncodingMacUkrainian ? kIndexMacUkrainian : ( (e) == kTextEncodingMacFarsi ? kIndexMacFarsi : kTextEncodingMacRoman) ) )
+#ifdef KERNEL
+#ifdef __APPLE_API_PRIVATE
 
-#define MapIndexToEncoding(i) \
-       ( (i) == kIndexMacFarsi ? kTextEncodingMacFarsi : ( (i) == kIndexMacUkrainian ? kTextEncodingMacUkrainian : (i) ) )
-
-#define ValidMacEncoding(e)    \
-       ( ((e) < 39)  ||  ((e) == kTextEncodingMacFarsi)  ||  ((e) == kTextEncodingMacUkrainian) )
+#include "../../hfs_macos_defs.h"
+#include "../../hfs_format.h"
 
 
 extern OSErr ConvertUnicodeToUTF8Mangled ( ByteCount srcLen,
@@ -119,3 +106,6 @@ extern SInt32 FastRelString( ConstStr255Param str1, ConstStr255Param str2 );
 
 extern HFSCatalogNodeID GetEmbeddedFileID( ConstStr31Param filename, UInt32 length, UInt32 *prefixLength );
 
+#endif /* __APPLE_API_PRIVATE */
+#endif /* KERNEL */
+#endif /* _HFSUNICODEWRAPPERS_ */