mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-22 14:30:29 +00:00
9c06493506
- added 'install' and 'release' targets - added rVersion rez forks to final files box.asm: - added dummy routine that winds up in the *.root file console.rez, modem.rez, null.rez, printer.rez: - initial checkin
35 lines
580 B
Plaintext
35 lines
580 B
Plaintext
/*
|
|
* Resources for version and comment
|
|
*
|
|
* $Id: modem.rez,v 1.1 1999/03/19 07:18:00 gdr-ftp Exp $
|
|
*/
|
|
|
|
#define PROG "/dev/modem"
|
|
#define DESC "Modem Device Driver\n"
|
|
|
|
#include "Types.rez"
|
|
#include "builddate.rez"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 1, 2, 0, /* Version */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
PROG, /* Program name */
|
|
DESC
|
|
BUILD_DATE
|
|
};
|
|
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
PROG "\n"
|
|
DESC
|
|
BUILD_DATE
|
|
};
|