1997-09-24 06:34:59 +00:00
|
|
|
/*
|
|
|
|
* Resources for version and comment
|
|
|
|
*
|
1998-02-07 06:40:11 +00:00
|
|
|
* $Id: descc.rez,v 1.3 1998/02/07 06:39:59 gdr-ftp Exp $
|
1997-09-24 06:34:59 +00:00
|
|
|
*/
|
|
|
|
#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) {
|
1998-02-07 06:40:11 +00:00
|
|
|
{ 1, 0, 6, /* Version */
|
1997-09-24 06:34:59 +00:00
|
|
|
release, /* development|alpha|beta|final|release */
|
|
|
|
0 }, /* non-final release number */
|
|
|
|
verUS, /* Country */
|
|
|
|
PROG, /* Program name */
|
|
|
|
DESC " (GNO)"
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Comment
|
|
|
|
*/
|
|
|
|
resource rComment (1, purgeable3) {
|
1998-02-07 06:40:11 +00:00
|
|
|
PROG " v1.0.6\n"
|
1997-09-24 06:34:59 +00:00
|
|
|
DESC " (GNO) \n"
|
|
|
|
AUTHOR
|
|
|
|
};
|
|
|
|
|
|
|
|
|