mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-15 15:07:16 +00:00
18 lines
405 B
Plaintext
18 lines
405 B
Plaintext
|
/*
|
||
|
* $Id: true.rez,v 1.1 1997/09/26 06:40:51 gdr Exp $
|
||
|
*/
|
||
|
|
||
|
#include "Types.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,
|
||
|
"true",
|
||
|
"Return a 'true' value to the shell\n"
|
||
|
"Author: Devin Reade <gdr@myrias.com>"
|
||
|
};
|