/alps/ipecamera

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/ipecamera

« back to all changes in this revision

Viewing changes to error.h

  • Committer: Suren A. Chilingaryan
  • Date: 2011-03-08 21:46:14 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: csa@dside.dyndns.org-20110308214614-g5v841m61jilcrm2
Initial support of IPECamera protocol

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _PCILIB_ERROR_H
 
2
#define _PCILIB_ERROR_H
 
3
 
 
4
enum {
 
5
    PCILIB_ERROR_SUCCESS = 0,
 
6
    PCILIB_ERROR_INVALID_ADDRESS,
 
7
    PCILIB_ERROR_TIMEOUT,
 
8
    PCILIB_ERROR_FAILED,
 
9
    PCILIB_ERROR_VERIFY,
 
10
    PCILIB_ERROR_NOTSUPPORTED,
 
11
    PCILIB_ERROR_NOTFOUND,
 
12
    PCILIB_ERROR_OUTOFRANGE
 
13
} pcilib_errot_t;
 
14
 
 
15
 
 
16
#endif /* _PCILIB_ERROR_H */