gpt4 book ai didi

c++ - 如何将 CFString 转换为 HFSUniStr255?

转载 作者:行者123 更新时间:2023-11-28 06:41:51 26 4
gpt4 key购买 nike

首先,这与古代技术有关。我正在处理的程序端口在 Metrowerks Codewarrior 9 中维护,目标是 PPC。

用于 MSL C 的 FSRefParentAndFilename_fopen 函数

FILE * FSRefParentAndFilename_fopen(
const FSRefPtr theParentRef,
ConstHFSUniStr255Param theName,
const char *open_mode);

我需要一个 ConstHFSUniStr255Param,它是一个指向 HFSUniStr255 的指针。我有一个包含我的文件名的 CFString,我的问题是如何转换为 HFSUniStr255?

struct HFSUniStr255 {
UInt16 length;
UniChar unicode[255];
};

到目前为止我有:

HFSUniStr255 HFSString;
FSGetDataForkName(&HFSString);
HFSString.length=(uint16)CFStringGetLength(fileName);
HFSString.unicode=?

最佳答案

您可以使用以下代码段:

HFSString.length=(uint16)CFStringGetLength(fileName);
CFStringGetCharacters(filename, CFRangeMake(0, CFStringGetLength(filename)), HFSString.unicode);

但请确保您的文件名有效,尤其是其长度少于 255 个 Unicode 字符。否则您将不得不面对缓冲区溢出的后果。

关于c++ - 如何将 CFString 转换为 HFSUniStr255?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25834347/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com