SuperHebbe
Programmer
Hi
I'm using this code to change the priority of my prog. Is it safe to use? Seems to work
SuperHebbe
I'm using this code to change the priority of my prog. Is it safe to use? Seems to work
Code:
struct hProcess *pr;
pr = GetCurrentProcess ();
SetPriorityClass (pr, BELOW_NORMAL_PRIORITY_CLASS);
SuperHebbe