home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-12-04 | 350 b | 13 lines | [TEXT/CWIE] |
- //
- // QD3D Debug Macros.h
- //
-
- #pragma once
-
- #include <UException.h>
- #include <QD3DErrors.h>
-
- #define ThrowIfQ3Error_() ThrowIfOSErr_(Q3Error_Get(0))
- #define ThrowIfQ3Warning_() ThrowIfOSErr_(Q3Warning_Get(0))
- #define ThrowIfQ3Notice_() ThrowIfOSErr_(Q3Notice_Get(0))
- #define ThrowIfQ3Any_() ThrowIfQ3Error_(); ThrowIfQ3Warning_(); ThrowIfQ3Notice_()