mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-09 09:20:15 +01:00
71 lines
2.7 KiB
C
71 lines
2.7 KiB
C
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||
|
/* ***** BEGIN LICENSE BLOCK *****
|
||
|
* Version: Mozilla-sample-code 1.0
|
||
|
*
|
||
|
* Copyright (c) 2002 Netscape Communications Corporation and
|
||
|
* other contributors
|
||
|
*
|
||
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
||
|
* copy of this Mozilla sample software and associated documentation files
|
||
|
* (the "Software"), to deal in the Software without restriction, including
|
||
|
* without limitation the rights to use, copy, modify, merge, publish,
|
||
|
* distribute, sublicense, and/or sell copies of the Software, and to permit
|
||
|
* persons to whom the Software is furnished to do so, subject to the
|
||
|
* following conditions:
|
||
|
*
|
||
|
* The above copyright notice and this permission notice shall be included
|
||
|
* in all copies or substantial portions of the Software.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||
|
* DEALINGS IN THE SOFTWARE.
|
||
|
*
|
||
|
* Contributor(s):
|
||
|
* Chak Nanga <chak@netscape.com>
|
||
|
*
|
||
|
* ***** END LICENSE BLOCK ***** */
|
||
|
|
||
|
// stdafx.h : include file for standard system include files,
|
||
|
// or project specific include files that are used frequently, but
|
||
|
// are changed infrequently
|
||
|
//
|
||
|
|
||
|
#ifndef _STDAFX_H
|
||
|
#define _STDAFX_H
|
||
|
|
||
|
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
|
||
|
|
||
|
//
|
||
|
// These headers are very evil, as they will define DEBUG if _DEBUG is
|
||
|
// defined, which is lame and not what we want for things like
|
||
|
// MOZ_TRACE_MALLOC and other tools.
|
||
|
// If we do not detect this, various MOZ/NS debug symbols are undefined
|
||
|
// and we can not build.
|
||
|
// /MDd defines _DEBUG automagically to have the right debug C LIB
|
||
|
// functions get called (so we can get symbols and hook into malloc).
|
||
|
//
|
||
|
#if !defined(DEBUG)
|
||
|
#define THERECANBENODEBUG
|
||
|
#endif
|
||
|
|
||
|
#include <afxwin.h> // MFC core and standard components
|
||
|
#include <afxext.h> // MFC extensions
|
||
|
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
|
||
|
#include <afxpriv.h> // Needed for MFC MBCS/Unicode Conversion Macros
|
||
|
#ifndef _AFX_NO_AFXCMN_SUPPORT
|
||
|
#include <afxcmn.h> // MFC support for Windows Common Controls
|
||
|
#endif // _AFX_NO_AFXCMN_SUPPORT
|
||
|
|
||
|
//{{AFX_INSERT_LOCATION}}
|
||
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
||
|
|
||
|
#if defined(THERECANBENODEBUG) && defined(DEBUG)
|
||
|
#undef DEBUG
|
||
|
#endif
|
||
|
|
||
|
#endif //_STDAFX_H
|