sqlite_server/inc/status.h
2025-03-13 20:26:17 +08:00

9 lines
152 B
C

#pragma once
enum class Status{
STATUS_OK = 0,
STATUS_ERR = -1,
STATUS_INNER_ERR =-2,
STATUS_INVALIED_PARAMS =-3,
STATUS_OOM =-4
};