Files
2025-11-07 15:57:11 +00:00

12 lines
158 B
C

// incp2.h - Defines types common to all INCP interfaces.
#pragma once
typedef enum {
ERR_SUCCESS = 0,
ERR_ERROR,
ERR_NOT_IMPL,
ERR_NOT_MINE,
} err_t;