mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-10-31 11:07:44 +00:00
31 lines
635 B
Plaintext
31 lines
635 B
Plaintext
|
/*
|
||
|
* Resources for version and comment
|
||
|
* $Id: yes.rez,v 1.1 1997/10/03 04:04:53 gdr Exp $
|
||
|
*/
|
||
|
#define PROG "yes"
|
||
|
#define DESC "Repetitively echo \"y\" or command-line argument"
|
||
|
|
||
|
#include "Types.rez"
|
||
|
|
||
|
/*
|
||
|
* Version
|
||
|
*/
|
||
|
resource rVersion (1, purgeable3) {
|
||
|
{ 2, 0, 0, /* Version 2.0.0 */
|
||
|
release, /* development|alpha|beta|final|release */
|
||
|
0 }, /* non-final release number */
|
||
|
verUS, /* Country */
|
||
|
PROG, /* Program name */
|
||
|
DESC " Released with GNO/ME."
|
||
|
};
|
||
|
|
||
|
|
||
|
/*
|
||
|
* Comment
|
||
|
*/
|
||
|
resource rComment (1, purgeable3) {
|
||
|
PROG " v2.0 (September 1997)\n"
|
||
|
"GNO utility: " DESC "\n"
|
||
|
"Ported from FreeBSD code by Dave Tribby."
|
||
|
};
|