Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*
* VER3216.C * * Version-related information. * */ #include <minlit.h>
#include <bndtrn.h>
#include <bndrel.h>
#include <lnkio.h>
#include <extern.h>
#include <lnkmsg.h>
#include "ver3216.h"
unsigned char LINKVER = rmj; /* Version number */ unsigned char LINKREV = rmm; /* Release number */
void DisplayBanner(void) { if (!BannerOnScreen && !fNoBanner) { #if O68K
FmtPrint("\r\nMicrosoft (R) x86/68k Segmented Executable Linker "VERSION_STRING ); #else
#if defined( _WIN32 )
FmtPrint("\r\nMicrosoft (R) Segmented Executable Linker NTGroup "VERSION_STRING ); #else
FmtPrint("\r\nMicrosoft (R) Segmented Executable Linker "VERSION_STRING ); #endif
#endif
FmtPrint("\r\nCopyright (C) Microsoft Corp 1984-1993. %s.\r\n\r\n", __NMSG_TEXT(N_allrights)); BannerOnScreen = (FTYPE) TRUE; } }
|