home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / mac / SiteBldr / AMOVIE / SDK / _SETUP / COMMON.Z / stdwin.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-26  |  1.1 KB  |  35 lines

  1. //==========================================================================;
  2. //
  3. //  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4. //  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5. //  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6. //  PURPOSE.
  7. //
  8. //  Copyright (c) 1992 - 1996  Microsoft Corporation.  All Rights Reserved.
  9. //
  10. //--------------------------------------------------------------------------;
  11. //
  12. //stdwin.h
  13. //
  14. // Allows vc++ to precompile the standard header files.
  15.  
  16. #ifdef NDEBUG
  17.   #define ASSERT( exp ) ((void)0)
  18. #else
  19.   void DbgAssert(const char *pCondition, const char *pFileName, int iLine);
  20.   #define ASSERT(exp) if(!(exp)) DbgAssert( TEXT(#exp), TEXT(__FILE__), TEXT(__LINE__) );
  21. #endif
  22.  
  23. #include <windows.h>
  24. #include <commdlg.h>
  25. #include <string.h>
  26.  
  27. // #define _AFX_NO_BSTR_SUPPORT
  28. // #include <afxwin.h>            // MFC core and standard components
  29. // #include <afxext.h>         // MFC extensions (including VB)
  30. #include <objbase.h>
  31. // #include <afxtempl.h>
  32. #include <strmif.h>
  33. #include <control.h>
  34. #include <uuids.h>
  35.