mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-04 22:30:42 +00:00
35 lines
576 B
Plaintext
35 lines
576 B
Plaintext
|
/*
|
||
|
* Resources for version and comment
|
||
|
*
|
||
|
* $Id: sim.rez,v 1.1 1999/02/08 05:53:38 gdr-ftp Exp $
|
||
|
*/
|
||
|
|
||
|
#define PROG "sim"
|
||
|
#define DESC "Serial Interrupt Manager\n"
|
||
|
|
||
|
#include "Types.rez"
|
||
|
#include "builddate.rez"
|
||
|
|
||
|
/*
|
||
|
* Version
|
||
|
*/
|
||
|
resource rVersion (1, purgeable3) {
|
||
|
{ 1, 0, 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
|
||
|
};
|