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.

42 lines
1.1 KiB

  1. /*
  2. * Copyright (C) 1997 Microsoft Corporation
  3. *
  4. * Purpose:
  5. * Include for resource file versioning in the stacks project.
  6. * DO NOT USE IN ANY OTHER PROJECTS, use exver.rcv instead.
  7. *
  8. * Notes:
  9. * 1. This file should only be changed by the build master.
  10. *
  11. * 2. Before including this file, define the following:
  12. * #define meaning
  13. * ----------------------- ------------------------------------
  14. * RC_VERSION_FILE_DESCRIPTION Description of target file.
  15. * RC_VERSION_INTERNAL_NAME Usually the target's base filename.
  16. * RC_VERSION_ORIGINAL_FILE_NAME Usually the target's filename.
  17. */
  18. #ifndef _WINDOWS_
  19. #include <windows.h>
  20. #endif
  21. #define VER_FILEDESCRIPTION_STR RC_VERSION_FILE_DESCRIPTION
  22. #define VER_INTERNALNAME_STR RC_VERSION_INTERNAL_NAME
  23. #define VER_ORIGINALFILENAME_STR RC_VERSION_ORIGINAL_FILE_NAME
  24. #if defined(_DLL) || defined(DLL)
  25. #define VER_FILETYPE VFT_DLL
  26. #else
  27. #define VER_FILETYPE VFT_APP
  28. #endif
  29. //
  30. // Force iisver.h to use our product name
  31. //
  32. #define VER_IISPRODUCTNAME_STR "Internet Information Services"
  33. #include <ntverp.h>
  34. #include "iisver.h"
  35. #include <common.ver>