Skip to content
Snippets Groups Projects
Commit 0a748f57 authored by rswindell's avatar rswindell
Browse files

Version string now includes non-Win32 target OS names.

parent 29a83f62
Branches
Tags
No related merge requests found
......@@ -49,7 +49,21 @@
#define VERSION "3.00" /* Version: Major.minor */
#define REVISION 'C'
#define VERSION_NOTICE "Synchronet BBS for Win32 Version 3.00 "
#define VERSION_NOTICE "Synchronet BBS for "\
#if defined(_WIN32)
"Win32"\
#elif defined(__linux__)
"Linux"\
#elif defined(__unix__)
"Unix"\
#elif defined(__OS2__)
"OS/2"\
#elif defined(__MSDOS__)
"DOS"\
#else
"Uknown OS"\
#endif
" Version 3.00 "
#define COPYRIGHT_NOTICE "Copyright 2000 Rob Swindell"
#define QWK_HEADER "Produced by Synchronet BBS Version 3 "\
COPYRIGHT_NOTICE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment