hi, im reading a boox that explayed pointers to functions. but my compiler gets "error C2064: term does not evaluate to a function"


void Initialize()
{
SYSTEM_TIME_INFORMATION SysTimeInfo ;
SYSTEM_PERFORMANCE_INFORMATION SysPerfInfo ;
int retr;
HINSTANCE__ *retrh;
;

retrh = LoadLibrary("NTDLL.DLL");
GetProcAddress(retrh,"NtQuerySystemInformation");
__asm {

mov NtQuerySystemInformation,eax
}

retr = NtQuerySystemInformation(SYSTEM_TIMEINFORMATION, *SysTimeInfo, sizeof(SysTimeInfo), 0);
return;
}