X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/8f6c56a50524aa785f7e596d52dddfb331e18961..c18c124eaa464aaaa5549e99e5a70fc9cbb50944:/bsd/hfs/hfs_encodings.h diff --git a/bsd/hfs/hfs_encodings.h b/bsd/hfs/hfs_encodings.h index 48712574c..f93ed4666 100644 --- a/bsd/hfs/hfs_encodings.h +++ b/bsd/hfs/hfs_encodings.h @@ -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@ * @@ -55,17 +55,16 @@ */ 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 */