/*
- * 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 */