Group: Process and Thread - Library: kernel32
GetProcessVersion points at target OS
Reading and setting the priority class values for the current process and thread
How to hide your program from the Close Program dialog (Win9* only)
How to find when the application started
Obtaining I/O counts for the current process
DWORD GetCurrentProcessId(VOID); DECLARE INTEGER GetCurrentProcessId;
IN kernel32 This function has no parameters.
The return value is the process identifier of the calling process.
Until the process terminates, the process identifier uniquely identifies the process throughout the system.
Application.ProcessId returns identical result and most likely wraps this function.
Home