/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to src/Error.h

  • Committer: Gustav Hartvigsson
  • Date: 2013-09-09 21:06:09 UTC
  • mfrom: (19 simpletypesystem)
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: gustav.hartvigsson@gmail.com-20130909210609-jqyy0z02vhe00kq0
* Merging from local branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
 
36
36
/**
37
 
 * An SError is a data structure that inherets from SBaseObjectInstance.
 
37
 * An SError is a data structure that inherits from SBaseObjectInstance.
38
38
 * 
39
39
 * An SError represents an error that can occur.
40
40
 */
56
56
 * The different error types.
57
57
 */
58
58
typedef enum {
59
 
  S_ERROR_NONE = 0, /** Not on error */
60
 
  S_ERROR_INPUT_OUTPUT, /** An I/O error */
61
 
  S_ERROR_OVERFLOW, /** An Overflow error */
62
 
  S_ERROR_OTHER = INT_MAX - 1, /** Some unknowned error */
63
 
  S_ERROR_NULL = INT_MAX /** An NULL error */
 
59
  S_ERROR_NONE = 0, /**< Not on error */
 
60
  S_ERROR_INPUT_OUTPUT, /**< An I/O error */
 
61
  S_ERROR_OVERFLOW, /**< An Overflow error */
 
62
  S_ERROR_OTHER = INT_MAX - 1, /**< Some unknowned error */
 
63
  S_ERROR_NULL = INT_MAX /**< An NULL error */
64
64
} SErrorType;
65
65
 
66
66