blob: 4817f56a9861486a3d93dc9c69c399017e71675d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | #if !defined(DEFINITIONS_H)
#define DEFINITIONS_H
#define FLAG_CONTAINS(x,y)      ( ( x & y ) == y )
#define REMOVE_FLAG(x,y)        ( x = ( x & ~y ))
#define CODE_BLOCK_TRY              try {
#define CODE_BLOCK_CATCH(ex)        } catch (ex& e) { debugLogA("Exception: %s", e.what());
#define CODE_BLOCK_CATCH_UNKNOWN    } catch (...) { debugLogA("Unknown exception");
#define CODE_BLOCK_CATCH_ALL        } catch (WAException& e) { debugLogA("Exception: %s", e.what()); \
                                    } catch (exception& e) { debugLogA("Exception: %s", e.what()); \
                                    } catch (...) { debugLogA("Unknown exception"); }
#define CODE_BLOCK_END              }
#define NIIF_INTERN_TCHAR NIIF_INTERN_UNICODE
#endif
 |