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.

67 lines
1.9 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1996-1999
  5. //
  6. // File: ntver.rc
  7. //
  8. // Contents:
  9. //
  10. // History:
  11. //
  12. //
  13. //---------------------------------------------------------------------------
  14. /*
  15. ** Template for version resources. Place this in your .rc file,
  16. ** editing the values for VER_FILETYPE, VER_FILESUBTYPE,
  17. ** VER_FILEDESCRIPTION_STR and VER_INTERNALNAME_STR as needed.
  18. ** See winver.h for possible values.
  19. **
  20. ** Ntverp.h defines several global values that don't need to be
  21. ** changed except for official releases such as betas, sdk updates, etc.
  22. **
  23. ** Common.ver has the actual version resource structure that all these
  24. ** #defines eventually initialize.
  25. */
  26. /* #include <windows.h> needed if this will be the .rc file */
  27. #define VER_LEGALCOPYRIGHT_YEARS "1981-1995"
  28. #include <ntverp.h>
  29. /*-----------------------------------------------*/
  30. /* the following lines are specific to this file */
  31. /*-----------------------------------------------*/
  32. /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
  33. * and VER_INTERNALNAME_STR must be defined before including COMMON.VER
  34. * The strings don't need a '\0', since common.ver has them.
  35. */
  36. #define VER_FILETYPE VFT_DLL
  37. /* possible values: VFT_UNKNOWN
  38. VFT_APP
  39. VFT_DLL
  40. VFT_DRV
  41. VFT_FONT
  42. VFT_VXD
  43. VFT_STATIC_LIB
  44. */
  45. #define VER_FILESUBTYPE VFT2_UNKNOWN
  46. /* possible values VFT2_UNKNOWN
  47. VFT2_DRV_PRINTER
  48. VFT2_DRV_KEYBOARD
  49. VFT2_DRV_LANGUAGE
  50. VFT2_DRV_DISPLAY
  51. VFT2_DRV_MOUSE
  52. VFT2_DRV_NETWORK
  53. VFT2_DRV_SYSTEM
  54. VFT2_DRV_INSTALLABLE
  55. VFT2_DRV_SOUND
  56. VFT2_DRV_COMM
  57. */
  58. #define VER_FILEDESCRIPTION_STR "License Logging Service RPC Interface"
  59. #define VER_INTERNALNAME_STR "LLSRPC.DLL"
  60. #define VER_ORIGINALFILENAME_STR "LLSRPC.DLL"
  61. #include "common.ver"