home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-17 | 1.8 KB | 74 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: FWFound.hpp
- // Release Version: $ ODF 2 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FWFOUND_HPP
- #define FWFOUND_HPP
-
- #ifndef FW_USE_PRECOMPILED_HEADERS
- #define FW_USE_PRECOMPILED_HEADERS 0
- #endif
-
- #ifndef FW_AGGRESSIVE_PRECOMPILE
- #define FW_AGGRESSIVE_PRECOMPILE 0
- #endif
-
- #ifndef FW_PRECOMPILE_PRIVATE_HEADERS
- #define FW_PRECOMPILE_PRIVATE_HEADERS 0
- #endif
-
- //========================================================================================
- // Always Needed Includes
- //========================================================================================
- // Environment definition file must be first
-
- #ifndef FWENVDEF_H
- #include "FWEnvDef.h"
- #endif
-
- //========================================================================================
- // Foundation Precompiled Headers
- //========================================================================================
-
- #if FW_USE_PRECOMPILED_HEADERS
-
- // ----- C++ runtime Includes -----
-
- #include <stddef.h>
-
- // ----- Platform Includes -----
-
- #if defined(FW_BUILD_WIN) && !defined(_INC_WINDOWS)
- #include <Windows.h>
- #endif
-
- #if defined(FW_BUILD_WIN) && !defined(_INC_WINDOWSX)
- #include <WindowsX.h>
- #endif
-
- #ifdef FW_BUILD_MAC
- #include "FWUniHdr.h"
- #endif
-
- // ----- Foundation Includes -----
-
- // We consider precompiling headers in this layer for this layer aggressive,
- // as opposed to just precompiling things this layer uses.
-
- #if FW_AGGRESSIVE_PRECOMPILE
-
- #ifndef FWFOUND_H
- #include "FWFound.h"
- #endif
-
- #endif // FW_AGGRESSIVE_PRECOMPILE
-
- #endif // FW_USE_PRECOMPILED_HEADERS
-
- #endif // FWFOUND_HPP
-