现在我想从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 infront的值具有十六进制值,如0xA2和0x5A,它们只是虚拟密钥代码。我希望能够随时更改此密钥,这就是为什么我不只是在sendkey函数中使用它,任何想法如何让GetPrivateProfileInt读取十六进制值。
答案 0 :(得分:2)
GetPrivateProfileInt
不支持十六进制。如果你想支持十六进制,你必须打电话给GetPrivateProfileString
并自己解析。