comparison src/main/macos/SDL.shlib.r @ 4128:b74570c53159 SDL-1.2

Updated MacOS Classic version, added version resource to MPW build.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 31 Dec 2007 03:04:31 +0000
parents
children e52772528c75
comparison
equal deleted inserted replaced
4127:6cb18cf1777e 4128:b74570c53159
1
2 #ifndef __TYPES_R__
3 #include "Types.r"
4 #endif
5
6 #ifndef __BALLOONS_R__
7 #include "Balloons.r"
8 #endif
9
10 #define VERSION_MAJOR 1
11 #define VERSION_MINOR 2
12 #define REVISION 13
13
14 #define STATE release /* development | alpha | beta | release */
15 #define RELEASE_NO 0 /* number after letter, or zero for release */
16 #define COUNTRY verUS
17
18 #define VERSION_STRING "1.2.13"
19
20 #define NAME "SDL"
21 #define SHORT_DESCRIPTION "Simple DirectMedia Layer by Sam Lantinga"
22 #define LONG_DESCRIPTION "A cross-platform multimedia library.\n\nhttp://www.libsdl.org"
23
24 resource 'vers' (1) {
25 VERSION_MAJOR,
26 (VERSION_MINOR << 4) | REVISION,
27 STATE,
28 RELEASE_NO,
29 COUNTRY,
30 VERSION_STRING,
31 VERSION_STRING
32 };
33
34 resource 'vers' (2) {
35 VERSION_MAJOR,
36 (VERSION_MINOR << 4) | REVISION,
37 STATE,
38 RELEASE_NO,
39 COUNTRY,
40 VERSION_STRING,
41 SHORT_DESCRIPTION
42 };
43
44
45 /* Extension Manager info */
46 data 'CCI' (128) {
47 NAME "\n\n"
48 LONG_DESCRIPTION
49 };
50
51 /* Finder help balloon */
52 resource 'hfdr' (kHMHelpID) {
53 HelpMgrVersion,
54 hmDefaultOptions,
55 0,
56 0,
57 {
58 HMStringItem
59 {
60 NAME "\n\n"
61 LONG_DESCRIPTION
62 }
63 }
64
65 };
66
67 resource 'BNDL' (128) {
68 'SDL!',
69 0,
70 { 'ICN#',
71 { 0, 128
72 },
73 'FREF',
74 { 0, 128
75 }
76 }
77 };
78
79 resource 'FREF' (128) {
80 'shlb',
81 0,
82 ""
83 };
84
85 /* Owner resource */
86 data 'SDL!' (0) {
87 $"00"
88 };