Source code of Windows XP (NT5)
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.

75 lines
1.3 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Copyright (c) Seagate Software Inc., 1997-1998
  4. Module Name:
  5. WsbVer.h
  6. Abstract:
  7. This module defines the correct copyright information for the Sakkara
  8. project executables / dlls / services / drivers / etc.
  9. Author:
  10. Rohde Wakefield [rohde] 7-Dec-1997
  11. Revision History:
  12. --*/
  13. #ifndef _WSBVER_
  14. #define _WSBVER_
  15. /*
  16. In addition to including this file, it is necessary to define the
  17. following in the module's resource file:
  18. VER_FILETYPE - One of: VFT_APP, VFT_DLL, VFT_DRV
  19. VER_FILESUBTYPE - One of: VFT_UNKNOWN, VFT_DRV_SYSTEM,
  20. - VFT_DRV_INSTALLABLE
  21. VER_FILEDESCRIPTION_STR - String describing module
  22. VER_INTERNALNAME_STR - Internal Name (Same as module name)
  23. A Typical section would look like:
  24. #define VER_FILETYPE VFT_DLL
  25. #define VER_FILESUBTYPE VFT2_UNKNOWN
  26. #define VER_FILEDESCRIPTION_STR "Remote Storage Engine"
  27. #define VER_INTERNALNAME_STR "RsEng.exe"
  28. #include "WsbVer.h"
  29. */
  30. //
  31. // Include some needed defines
  32. //
  33. #include <winver.h>
  34. #include <ntverp.h>
  35. //
  36. // Overide copyright
  37. //
  38. /*** NOT ANYMORE - use default copyright, which is defined in common.ver ***/
  39. //
  40. // And finally, define the version resource
  41. //
  42. #include <common.ver>
  43. #endif // _WSBVER_