gpt4 book ai didi

c++ - 使用 GetPrivateProfileInt、GetPrivateProfileString 读取十六进制值的正确方法是什么?

转载 作者:行者123 更新时间:2023-11-28 03:24:01 24 4
gpt4 key购买 nike

现在我想从 ini 中的变量中获取值并将它们吐出到 sendkey 函数中。所以目前这就是我在顶部定义它们的方式显然不正确,因为我在测试变量时得到了默认值。

const int KeyAtk = GetPrivateProfileInt(L"BotSettings",L"AttackKey", 0xA2, L"config.ini");
const int KeyLoot = GetPrivateProfileInt(L"BotSettings",L"LootKey", 0x5A, L"config.ini");
//Counts
int CntAtk = GetPrivateProfileInt(L"BotSettings",L"PressAttack", 25, L"config.ini");
int CntLoot = GetPrivateProfileInt(L"BotSettings",L"PressLoot", 15, L"config.ini");

前面带有 const int 的值有一个十六进制值,如 0xA2 和 0x5A,它们只是虚拟键代码。我希望能够随时更改此 key ,这就是为什么我不只是在 sendkey 函数中使用它的原因,任何人都知道如何让 GetPrivateProfileInt 读取十六进制值。

最佳答案

GetPrivateProfileInt 不支持十六进制。如果要支持十六进制,则必须调用 GetPrivateProfileString 并自行解析。

关于c++ - 使用 GetPrivateProfileInt、GetPrivateProfileString 读取十六进制值的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14645114/

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