Hi *,
I am trying to call a kernel32 function but without much sucess. The function I want to call is:
SetProcessWorkingSetSize
Part of the problems I have is due to the fact that I don't know the exact signature of this function.
The description of this function on Microsoft Site does not reaply help nme further:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/setprocessworkingsetsizeex.asp
To help solve this issue I used a DLL explorer and got the following signature:
function SetProcessWorkingSetSize(hProcess: THandle; dwMinimumWorkingSetSize,
dwMaximumWorkingSetSize: DWORD):
Yet, neither DWORD nor THandle is something that xFunction understands.
Please help!!!
thanks,
Gergory.