]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/hfs/hfs_encodings.h
xnu-1699.24.23.tar.gz
[apple/xnu.git] / bsd / hfs / hfs_encodings.h
index 48712574c5bf430858acfa773aeb72109959b6e0..8d9dc4b08536e78bfde30c14e2332e3c9ee42104 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2002, 2005 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
  * 
  */
 
 typedef int (* hfs_to_unicode_func_t)(const Str31 hfs_str, UniChar *uni_str,
-               UInt32 maxCharLen, UInt32 *usedCharLen);
+               u_int32_t maxCharLen, u_int32_t *usedCharLen);
 
-typedef int (* unicode_to_hfs_func_t)(UniChar *uni_str, UInt32 unicodeChars,
+typedef int (* unicode_to_hfs_func_t)(UniChar *uni_str, u_int32_t unicodeChars,
                Str31 hfs_str);
 
 
-int hfs_addconverter(int kmod_id, UInt32 encoding,
+int hfs_addconverter(int kmod_id, u_int32_t encoding,
                hfs_to_unicode_func_t get_unicode,
                unicode_to_hfs_func_t get_hfsname);
 
-int hfs_remconverter(int kmod_id, UInt32 encoding);
+int hfs_remconverter(int kmod_id, u_int32_t encoding);
 
 #endif /* __APPLE_API_UNSTABLE */