- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
现在我想从 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/
问题:如何使用 string/char* 变量作为 GetPrivateProfileInt 方法的路径参数。 我正在尝试使用 GetPrivateProfileInt给 window 。以下代码运行
我正在尝试读取包含内容的 C++ 中的 .init 配置文件。 [Ipaddress] Ipaddress=169.254.115.22 [ScanConfiguration] Scanfrequen
现在我想从 ini 中的变量中获取值并将它们吐出到 sendkey 函数中。所以目前这就是我在顶部定义它们的方式显然不正确,因为我在测试变量时得到了默认值。 const int KeyAtk = Ge
我正在处理旧应用程序中的一段代码,在 Visual Studio 2008 中使用 C++。它尝试从 INI 文件中读取一些值,并且我正在尝试在该部分的情况下进行一些错误处理或文件中不存在我尝试读取的
我是一名优秀的程序员,十分优秀!