Fix enum member comments.

This commit is contained in:
Michael Scire 2018-05-03 16:56:41 -06:00
parent 2041cf2282
commit e8ef6c4ed1

View File

@ -107,16 +107,16 @@ typedef enum {
/// Limitable Resources. /// Limitable Resources.
typedef enum { typedef enum {
LimitableResource_Memory=0, ///<How much memory can a process map? LimitableResource_Memory=0, ///<How much memory can a process map.
LimitableResource_Threads=1, ///<How many threads can a process spawn? LimitableResource_Threads=1, ///<How many threads can a process spawn.
LimitableResource_Events=2, ///<How many events can a process have? LimitableResource_Events=2, ///<How many events can a process have.
LimitableResource_TransferMemories=3, ///<How many transfer memories can a process make? LimitableResource_TransferMemories=3, ///<How many transfer memories can a process make.
LimitableResource_Sessions=4, ///<How many sessions can a process own? LimitableResource_Sessions=4, ///<How many sessions can a process own.
} LimitableResource; } LimitableResource;
/// Process Information. /// Process Information.
typedef enum { typedef enum {
ProcessInfoType_ProcessState=0, ///<What state is a process in? ProcessInfoType_ProcessState=0, ///<What state is a process in.
} ProcessInfoType; } ProcessInfoType;
/// Process States. /// Process States.