Skip to content

Commit

Permalink
Updated MacOS Classic version, added version resource to MPW build.
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 31, 2007
1 parent 4af804e commit b9bc0f0
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 0 deletions.
Binary file modified CWprojects.sea.bin
Binary file not shown.
Binary file modified MPWmake.sea.bin
Binary file not shown.
88 changes: 88 additions & 0 deletions src/main/macos/SDL.shlib.r
@@ -0,0 +1,88 @@

#ifndef __TYPES_R__
#include "Types.r"
#endif

#ifndef __BALLOONS_R__
#include "Balloons.r"
#endif

#define VERSION_MAJOR 1
#define VERSION_MINOR 2
#define REVISION 13

#define STATE release /* development | alpha | beta | release */
#define RELEASE_NO 0 /* number after letter, or zero for release */
#define COUNTRY verUS

#define VERSION_STRING "1.2.13"

#define NAME "SDL"
#define SHORT_DESCRIPTION "Simple DirectMedia Layer by Sam Lantinga"
#define LONG_DESCRIPTION "A cross-platform multimedia library.\n\nhttp://www.libsdl.org"

resource 'vers' (1) {
VERSION_MAJOR,
(VERSION_MINOR << 4) | REVISION,
STATE,
RELEASE_NO,
COUNTRY,
VERSION_STRING,
VERSION_STRING
};

resource 'vers' (2) {
VERSION_MAJOR,
(VERSION_MINOR << 4) | REVISION,
STATE,
RELEASE_NO,
COUNTRY,
VERSION_STRING,
SHORT_DESCRIPTION
};


/* Extension Manager info */
data 'CCI' (128) {
NAME "\n\n"
LONG_DESCRIPTION
};

/* Finder help balloon */
resource 'hfdr' (kHMHelpID) {
HelpMgrVersion,
hmDefaultOptions,
0,
0,
{
HMStringItem
{
NAME "\n\n"
LONG_DESCRIPTION
}
}

};

resource 'BNDL' (128) {
'SDL!',
0,
{ 'ICN#',
{ 0, 128
},
'FREF',
{ 0, 128
}
}
};

resource 'FREF' (128) {
'shlb',
0,
""
};

/* Owner resource */
data 'SDL!' (0) {
$"00"
};

0 comments on commit b9bc0f0

Please sign in to comment.