mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-15 15:07:16 +00:00
d1faeee771
- increased optimization level to -1 - added -d option - changed output format
31 lines
644 B
Plaintext
31 lines
644 B
Plaintext
/*
|
|
* Resources for version and comment
|
|
* $Id: lseg.rez,v 1.3 1997/09/28 16:41:13 gdr Exp $
|
|
*/
|
|
#define PROG "lseg"
|
|
#define DESC "List segments of an Object Module Format file."
|
|
|
|
#include "Types.rez"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 1, 1, 0, /* Version 1.1.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.1 (September 1997)\n"
|
|
"GNO utility: " DESC "\n"
|
|
"Written by Jawaid Bazyar; updated by Dave Tribby."
|
|
};
|