You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
221 B
11 lines
221 B
#ifndef CEXCEPTION_H
|
|
#define CEXCEPTION_H
|
|
|
|
#define CEXCEPTION_BEING_USED 1
|
|
|
|
#define CEXCEPTION_NONE 0
|
|
#define CEXCEPTION_T int e = 1; (void)
|
|
#define Try if (e)
|
|
#define Catch(a) if (!a)
|
|
|
|
#endif //CEXCEPTION_H
|
|
|