libnick 2025.9.1
A cross-platform base for native Nickvision applications.
Loading...
Searching...
No Matches
processstate.h
Go to the documentation of this file.
1#ifndef PROCESSSTATE_H
2#define PROCESSSTATE_H
3
4namespace Nickvision::System
5{
9 enum class ProcessState
10 {
11 Created, //The process was just created (start() not yet called)
12 Running, //The process is running
13 Killed, //The process was killed and is no longer running
14 Paused, //The process was paused and is no longer running (continue using resume())
15 Completed //The process was completed and is no longer running
16 };
17}
18
19#endif //PROCESSSTATE_H
Definition credentials.h:31
ProcessState
States of a process.
Definition processstate.h:10
@ Completed
Definition processstate.h:15
@ Created
Definition processstate.h:11
@ Running
Definition processstate.h:12
@ Paused
Definition processstate.h:14
@ Killed
Definition processstate.h:13