This file defines structures and cosntants for process management functions of PwnOS.
| Processes.inc | This file defines structures and cosntants for process management functions of PwnOS. |
| PROCESSSTRUCT | This structure defines the state of a process. |
| Constants | |
| Process Priorities | These constants define thread priorities for use in PROCESSSTRUCT.PriorityLevel. |
| Process Creation Flags | These constants define flags for the Flags parameter of CreateProcess. |
This structure defines the state of a process.
| HandleType | HANDLE_TYPE_PROCESS |
| PriorityLevel | priority of the process; see Process Priorities |
| pThreadList | handle of the first thread in the thread list |
| hNextSibling | handle of the next process in the process list (see <pProcessList>) |
| Flags | miscellaneous status flags; none are defined at this time |
| Constants | |
| Process Priorities | These constants define thread priorities for use in PROCESSSTRUCT.PriorityLevel. |
| Process Creation Flags | These constants define flags for the Flags parameter of CreateProcess. |
These constants define thread priorities for use in PROCESSSTRUCT.PriorityLevel.
These constants define flags for the Flags parameter of CreateProcess.
| CREATE_PROCESS_FLAG_SYSTEM | create a system process (in privilege level 0) |