Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than ntdll, prefix the name with the module name and a period.
NtSetTimerResolution (ntdll)
[DllImport("ntdll.dll", SetLastError=true)]
static extern int NtSetTimerResolution(int DesiredResolution, bool SetResolution, out int CurrentResolution );
Notes:
None.
VB.NET Signature
Declare Function NtSetTimerResolution Lib "ntdll.dll" (ByVal DesiredResolution as UInteger, ByVal SetResolution as Boolean, ByRef CurrentResolution as UInteger)
Tips & Tricks:
Please add some!
Sample Code:
NtSetTimerResolution(10000, True, 0)
Please add some!
helpful tips or sample code to share for using this API in managed code?