Hotkey ini file

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
any idea?
Think about this for a minute, you're trying to perform a boolean operation on a pointer.
Topic archived. No new replies allowed.