mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-19 11:30:51 +00:00
35 lines
690 B
Plaintext
35 lines
690 B
Plaintext
|
/*
|
||
|
* Resources for version and comment
|
||
|
*
|
||
|
* $Id: descc.rez,v 1.1 1997/09/24 06:34:58 gdr Exp $
|
||
|
*/
|
||
|
#include "Types.rez"
|
||
|
|
||
|
/* Don't forget to update the version numbers, below (two places) */
|
||
|
#define PROG "descc"
|
||
|
#define DESC "describe(1) source compiler"
|
||
|
#define AUTHOR "Author: James Brookes <jamesb@ecst.csuchico.edu>"
|
||
|
|
||
|
/*
|
||
|
* Version
|
||
|
*/
|
||
|
resource rVersion (1, purgeable3) {
|
||
|
{ 1, 0, 4, /* Version 1.0.4 */
|
||
|
release, /* development|alpha|beta|final|release */
|
||
|
0 }, /* non-final release number */
|
||
|
verUS, /* Country */
|
||
|
PROG, /* Program name */
|
||
|
DESC " (GNO)"
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
* Comment
|
||
|
*/
|
||
|
resource rComment (1, purgeable3) {
|
||
|
PROG " v1.0.4\n"
|
||
|
DESC " (GNO) \n"
|
||
|
AUTHOR
|
||
|
};
|
||
|
|
||
|
|