home *** CD-ROM | disk | FTP | other *** search
Text File | 1989-06-09 | 1.0 KB | 46 lines | [TEXT/Earl] |
- /* Create the version string for Kermit with the last compi- */
- /* lation time. Compile this resource definition with Rez. */
- /* Created: 10/12/87 Matthias Aebi */
- /* Modifications: */
- /* Adopted for use with ╡Emacs by Earle Horton */
-
- INCLUDE "::╡emacs.rsrc";
-
- type 'Earl' {
- byte = 73; /* the string length */
- array CompileTime {
- string;
- byte; /* month first digit */
- byte; /* month second digit */
- byte = '/';
- byte; /* day first digit */
- byte; /* day second digit */
- byte = '/';
- byte; /* year first digit */
- byte; /* year second digit */
- byte = ' ';
- byte; /* hour first digit */
- byte; /* hour second digit */
- byte = ':';
- byte; /* minute first digit */
- byte; /* minute second digit */
- string; /* more junk */
- };
- };
-
- resource 'Earl' (0) {
- { "╡Emacs Version 3.9e ╤ ",
- ($$Month/10)+48,
- ($$Month%10)+48,
- ($$Day/10)+48,
- ($$Day%10)+48,
- ($$Year%100/10)+48,
- ($$Year%10)+48,
- ($$Hour/10)+48,
- ($$Hour%10)+48,
- ($$Minute/10)+48,
- ($$Minute%10)+48,
- "\n Last edit by Earle R. Horton",
- }
- };
-