diff options
author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2011-03-08 22:46:14 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2011-03-08 22:46:14 +0100 |
commit | 7f97ea07417de4c2ea260e2860e589011c732e04 (patch) | |
tree | 5e5dd32f4615a40990f8daf10a96f82f39ca3b83 /error.h | |
parent | 8a33c993a5771b041b67c365378ac40f76365da7 (diff) | |
download | pcitool-7f97ea07417de4c2ea260e2860e589011c732e04.tar.gz pcitool-7f97ea07417de4c2ea260e2860e589011c732e04.tar.bz2 pcitool-7f97ea07417de4c2ea260e2860e589011c732e04.tar.xz pcitool-7f97ea07417de4c2ea260e2860e589011c732e04.zip |
Initial support of IPECamera protocol
Diffstat (limited to 'error.h')
-rw-r--r-- | error.h | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +#ifndef _PCILIB_ERROR_H +#define _PCILIB_ERROR_H + +enum { + PCILIB_ERROR_SUCCESS = 0, + PCILIB_ERROR_INVALID_ADDRESS, + PCILIB_ERROR_TIMEOUT, + PCILIB_ERROR_FAILED, + PCILIB_ERROR_VERIFY, + PCILIB_ERROR_NOTSUPPORTED, + PCILIB_ERROR_NOTFOUND, + PCILIB_ERROR_OUTOFRANGE +} pcilib_errot_t; + + +#endif /* _PCILIB_ERROR_H */ |