home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-11-08 | 624 b | 37 lines | [TEXT/MPS ] |
- //
- // File: FWEnvDef.idl
- //
- // Contains: Standard IDL definitions for OpenDoc Development Framework
- //
- // Copyright: (C) 1993-1995 by Apple Computer, Inc., all rights reserved.
- //
-
- #ifndef FWENVDEF_IDL
- #define FWENVDEF_IDL
-
- // ------ Target platform
-
- #ifdef _WIN32
- #define FW_BUILD_WIN
- #else
- #define FW_BUILD_MAC
- #endif
-
- // ------ OpenDoc version
-
- #define FW_OPENDOC_DR1 1
- #define FW_OPENDOC_DR2 2
- #define FW_OPENDOC_DR3 3
- #define FW_OPENDOC_DR4 4
- #define FW_OPENDOC_100 5
-
- #ifdef FW_BUILD_MAC
- #define FW_OPENDOC_VERSION FW_OPENDOC_DR4
- #endif
-
- #ifdef FW_BUILD_WIN
- #define FW_OPENDOC_VERSION FW_OPENDOC_DR2
- #endif
-
- #endif
-