mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
c6c45722d8
Did changes for the initial GNO version. This includes: - prototyping; - changing the facility/priority value from an int to a long (we need 32 bits for all the information); - stack checking code; and - after doing a freopen() of stdin, change it back to text mode. Makefile, logger.rez, logger.desc: New files.
20 lines
479 B
Plaintext
20 lines
479 B
Plaintext
/*
|
|
* $Id: logger.rez,v 1.1 1998/06/23 23:23:55 gdr-ftp Exp $
|
|
*/
|
|
|
|
#include "Types.Rez"
|
|
#include "/src/gno/build.tools/builddate.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,
|
|
"logger",
|
|
"Log messages to system log files.\n"
|
|
"Ported by Devin Reade for GNO v2.0.6\n"
|
|
BUILD_DATE
|
|
};
|