sqlite_server/inc/status.h

9 lines
152 B
C
Raw Normal View History

2025-03-13 20:26:17 +08:00
#pragma once
enum class Status{
STATUS_OK = 0,
STATUS_ERR = -1,
STATUS_INNER_ERR =-2,
STATUS_INVALIED_PARAMS =-3,
STATUS_OOM =-4
};