diff options
author | midipix <writeonce@midipix.org> | 2018-08-13 19:24:52 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-08-13 19:24:52 -0400 |
commit | 9dcc1cb8578e7258befde14d74b2ea0e3b0effcf (patch) | |
tree | 3c3b62dbb1e9319031ccd61f09699d13f623cf05 /include | |
parent | 0e8c10996c0fb91c8cf50364fa4690dced4ae831 (diff) | |
download | ptycon-9dcc1cb8578e7258befde14d74b2ea0e3b0effcf.tar.bz2 ptycon-9dcc1cb8578e7258befde14d74b2ea0e3b0effcf.tar.xz |
driver: removed unused return-value definitions.
Diffstat (limited to 'include')
-rw-r--r-- | include/ptycon/ptycon.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/ptycon/ptycon.h b/include/ptycon/ptycon.h index 7a84e9d..4fbf538 100644 --- a/include/ptycon/ptycon.h +++ b/include/ptycon/ptycon.h @@ -27,10 +27,7 @@ extern "C" { /* status codes */ #define PTYC_OK 0x00 #define PTYC_USAGE 0x01 -#define PTYC_BAD_OPT 0x02 -#define PTYC_BAD_OPT_VAL 0x03 -#define PTYC_IO_ERROR 0xA0 -#define PTYC_MAP_ERROR 0xA1 +#define PTYC_ERROR 0x02 /* driver flags */ #define PTYC_DRIVER_VERBOSITY_NONE 0x0000 |