mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-10-31 11:07:44 +00:00
32 lines
633 B
Plaintext
32 lines
633 B
Plaintext
/*
|
|
* Resources for rcp version and comment
|
|
*
|
|
* $Id: rcp.rez,v 1.1 1998/01/24 07:35:25 taubert Exp $
|
|
*/
|
|
#define PROG "rcp"
|
|
#define DESC "Remote file copy."
|
|
|
|
#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 and GS/TCP."
|
|
};
|
|
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
PROG " v1.0 (November 1997)\n"
|
|
"GNO utility: " DESC "\n"
|
|
"Ported from FreeBSD 2.1.0 code by Derek Taubert."
|
|
};
|