mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
e014797a8e
* Add -f option to control printing of filename * Rewrote printing of text to allow carriage-return and tab * Report no version information as warning for both no rVersion and no version fork
32 lines
655 B
Plaintext
32 lines
655 B
Plaintext
/*
|
|
* Resources for getvers version and comment
|
|
*/
|
|
#define PROG "getvers"
|
|
#define DESC "Print contents of resource version."
|
|
|
|
#include "Types.rez"
|
|
#include "/src/gno/build.tools/builddate.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.\n"
|
|
BUILD_DATE
|
|
};
|
|
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
PROG " v2.0 (April 1998)\n"
|
|
"GNO utility: " DESC "\n"
|
|
"Originally by Ian Schmidt; updated by Dave Tribby."
|
|
};
|