Something like this? (I am doing something wrong):

Code:
void* INPUT();
...
function main()
{
  ...  

  //  GetProcAddress(WinUser.h, INPUT); // compiler gives error
  GetModuleHandle(INPUT); // works?
  INPUT ip; // compiler gives error here
 ...
}


Last edited by Reconnoiter; 01/19/16 13:42.