home *** CD-ROM | disk | FTP | other *** search
- //*****************************************************************************
- // stdafx.h
- //
- // Common include file for utility code.
- //*****************************************************************************
- #include <windows.h>
- #include <crtdbg.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <stddef.h>
- #include <malloc.h>
-
-
- #include "DebuggerUtil.h"
- #include "dshell.h"
- #include "__file__.h"
-
- #ifdef _DEBUG
-
- #define RELEASE(iptr) \
- { \
- _ASSERTE(iptr); \
- iptr->Release(); \
- iptr = NULL; \
- }
-
- #define VERIFY(stmt) _ASSERTE((stmt))
-
- #else
-
- #define RELEASE(iptr) \
- iptr->Release();
-
- #define VERIFY(stmt) (stmt)
-
- #endif
-
-