Files
quark-kernel/include/types/status.h
2021-05-01 17:09:50 -05:00

14 lines
196 B
C

#pragma once
enum status_t
{
S_OK = 0,
S_NULL_POINTER,
S_OUT_OF_BOUNDS,
S_INVALID_ARGUMENT,
S_OUT_OF_MEMORY,
S_DOESNT_EXIST,
S_EXISTS,
S_BAD_SYSCALL,
S_BUSY
};