mirror of
https://github.com/aaronsgiles/JPEGView.git
synced 2024-11-16 03:07:10 +00:00
92bdb55672
These are the sources for the final official release of JPEGView for the Mac, back in 1994.
1 line
1.1 KiB
R
1 line
1.1 KiB
R
// *****************************************************************************
|
|
//
|
|
// InfinityWDEF.r -- Rez code to support building a Fat or PPC-only version
|
|
//
|
|
// *****************************************************************************
|
|
#include "MixedMode.r"
|
|
|
|
// -----------------------------------------------------------------------------
|
|
#ifdef POWER_PC_ONLY
|
|
|
|
type 'WDEF' as 'rdes';
|
|
|
|
resource 'WDEF' (128) {
|
|
0x00003BB0, // PowerPC ProcInfo
|
|
$$Resource("InfinityWDEF.rsrc", 'pCod', 128) // Specify name, type, and ID of resource
|
|
// containing a pef container
|
|
};
|
|
|
|
// -----------------------------------------------------------------------------
|
|
#else
|
|
|
|
type 'WDEF' as 'sdes';
|
|
|
|
resource 'WDEF' (128) {
|
|
0x00003BB0, // 68K ProcInfo
|
|
0x00003BB0, // PowerPC ProcInfo
|
|
$$Resource("InfinityWDEF.rsrc", 'oCod', 128), // name, type, and ID of rsrc containing 68k code
|
|
$$Resource("InfinityWDEF.rsrc", 'pCod', 128) // name, type, and ID of rsrc containing ppc code
|
|
};
|
|
|
|
// -----------------------------------------------------------------------------
|
|
#endif |