mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-10-31 11:07:44 +00:00
31 lines
562 B
Plaintext
31 lines
562 B
Plaintext
|
/*
|
||
|
* Resources for version and comment
|
||
|
* $Id $
|
||
|
*/
|
||
|
#define PROG "rm"
|
||
|
#define DESC "Remove directory entries."
|
||
|
|
||
|
#include "Types.rez"
|
||
|
|
||
|
/*
|
||
|
* Version
|
||
|
*/
|
||
|
resource rVersion (1, purgeable3) {
|
||
|
{ 1, 0, 0, /* Version 1.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 " v1.0 (May 1999)\n"
|
||
|
"GNO utility: " DESC "\n"
|
||
|
"Ported from FreeBSD code by Dave Tribby."
|
||
|
};
|