12 lines
158 B
C
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;
|
|
|