mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
34 lines
920 B
Plaintext
34 lines
920 B
Plaintext
/*
|
|
* $Id: df.rez,v 1.3 1997/10/05 16:42:03 gdr Exp $
|
|
*/
|
|
#include "Types.Rez"
|
|
#include "proginfo.rez"
|
|
|
|
resource rVersion (0x1, purgeable3, nocrossbank) {
|
|
|
|
{ 1, 0, 0, /* version 1.0.0 */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 /* non-final release number */
|
|
},
|
|
verUS, /* country code -- only some are avail */
|
|
"df", /* name */
|
|
/* _Very_ brief descrition. Check "file info" */
|
|
/* shown in the Finder to see if it's too long */
|
|
/* Note that \n is used to separate lines here. */
|
|
"Display free disk space.\n"
|
|
"Requires GNO/ME Shell.\n"
|
|
"Evan Day <day@engr.orst.edu>"
|
|
};
|
|
|
|
resource rProgramInfo (0x1, purgeable3, nocrossbank) {
|
|
{ 6, 0, 1,
|
|
release,
|
|
0
|
|
},
|
|
80000, /* Overestimate, but the library */
|
|
80000, /* isn't final yet. */
|
|
1024,
|
|
progRequiresGNO+progAppleTalkOK+progAllowsCDAs,
|
|
piCompatible*ProgShellGSH+piSpecialFeatures*ProgShellGSH
|
|
};
|