20 lines
385 B
C
20 lines
385 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#define Z_OK 0x0
|
|
#define Z_ERR_NOT_FOUND 0x1
|
|
#define Z_ERR_INVALID 0x2
|
|
#define Z_ERR_DENIED 0x3
|
|
#define Z_ERR_UNIMPLEMENTED 0x4
|
|
#define Z_ERR_BUFF_SIZE 005
|
|
#define Z_ERR_NULL 0x6
|
|
#define Z_ERR_EXISTS 0x7
|
|
#define Z_ERR_EMPTY 0x8
|
|
|
|
#define Z_ERR_CAP_NOT_FOUND 0x100
|
|
#define Z_ERR_CAP_TYPE 0x101
|
|
#define Z_ERR_CAP_DENIED 0x102
|
|
|
|
typedef uint64_t z_err_t;
|