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.

36 lines
1016 B

  1. /*
  2. * VER3216.C
  3. *
  4. * Version-related information.
  5. *
  6. */
  7. #include <minlit.h>
  8. #include <bndtrn.h>
  9. #include <bndrel.h>
  10. #include <lnkio.h>
  11. #include <extern.h>
  12. #include <lnkmsg.h>
  13. #include "ver3216.h"
  14. unsigned char LINKVER = rmj; /* Version number */
  15. unsigned char LINKREV = rmm; /* Release number */
  16. void DisplayBanner(void)
  17. {
  18. if (!BannerOnScreen && !fNoBanner)
  19. {
  20. #if O68K
  21. FmtPrint("\r\nMicrosoft (R) x86/68k Segmented Executable Linker "VERSION_STRING );
  22. #else
  23. #if defined( _WIN32 )
  24. FmtPrint("\r\nMicrosoft (R) Segmented Executable Linker NTGroup "VERSION_STRING );
  25. #else
  26. FmtPrint("\r\nMicrosoft (R) Segmented Executable Linker "VERSION_STRING );
  27. #endif
  28. #endif
  29. FmtPrint("\r\nCopyright (C) Microsoft Corp 1984-1993. %s.\r\n\r\n",
  30. __NMSG_TEXT(N_allrights));
  31. BannerOnScreen = (FTYPE) TRUE;
  32. }
  33. }