home *** CD-ROM | disk | FTP | other *** search
- //==========================================================================;
- //
- // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
- // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- // IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
- // PURPOSE.
- //
- // Copyright (c) 1992 - 1996 Microsoft Corporation. All Rights Reserved.
- //
- //--------------------------------------------------------------------------;
- //
- //stdwin.h
- //
- // Allows vc++ to precompile the standard header files.
-
- #ifdef NDEBUG
- #define ASSERT( exp ) ((void)0)
- #else
- void DbgAssert(const char *pCondition, const char *pFileName, int iLine);
- #define ASSERT(exp) if(!(exp)) DbgAssert( TEXT(#exp), TEXT(__FILE__), TEXT(__LINE__) );
- #endif
-
- #include <windows.h>
- #include <commdlg.h>
- #include <string.h>
-
- // #define _AFX_NO_BSTR_SUPPORT
- // #include <afxwin.h> // MFC core and standard components
- // #include <afxext.h> // MFC extensions (including VB)
- #include <objbase.h>
- // #include <afxtempl.h>
- #include <strmif.h>
- #include <control.h>
- #include <uuids.h>
-