Hotkey ini file

May 3, 2012 at 2:57pm
Hello,
I try to creat a custom hotkey option with a ini file.
key =GetAsyncKeyState(VK_SHIFT)&&GetAsyncKeyState(VK_DELETE)

1
2
3
4
TCHAR Key[32];  
GetPrivateProfileString(("test"), ("test"), ("") ,Key, 32, ("C:\\test.ini")); 
if(Key) // Hotkeys to active option  //problem here
{


Last edited on May 3, 2012 at 6:49pm
May 3, 2012 at 6:49pm
any idea?
May 3, 2012 at 6:55pm
Think about this for a minute, you're trying to perform a boolean operation on a pointer.
Topic archived. No new replies allowed.