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.

62 lines
2.0 KiB

  1. //===========================================================================
  2. //
  3. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4. // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5. // IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6. // PURPOSE.
  7. //
  8. // Copyright (c) 1996 - 1997 Microsoft Corporation. All Rights Reserved.
  9. //
  10. //---------------------------------------------------------------------------
  11. //
  12. // ACTIVEX.VER
  13. //
  14. // Description:
  15. // Common versioning information for ACTIVEX binaries
  16. //
  17. // Notes:
  18. //
  19. //===========================================================================
  20. #ifndef _ACTIVEX_VER_
  21. #define _ACTIVEX_VER_
  22. // NOTE! all string resources that will be used in ACTIVEX.RCV for the
  23. // version resource information *MUST* have an explicit \0 terminator!
  24. #define VERSION_RES_MAJOR_VER 1
  25. #define VERSION_RES_MINOR_VER 0
  26. #define VERSION_RES_BUILD 0
  27. #define VERSION_RES_STRING_D "1.00 (Debug)\0"
  28. #define VERSION_RES_STRING "1.00\0"
  29. #define VERSION_RES_PRODUCT_NAME "MyProductName\0"
  30. #define VERSION_RES_COMPANY_NAME "MyCompanyName\0"
  31. #define VERSION_RES_COPYRIGHT "Copyright (C) 1997 MyCompanyName.\0"
  32. // The following defines are required on a file-by-file basis
  33. //
  34. // #define VERSION_RES_BIN_NAME "sample.ax\0"
  35. // #define VERSION_RES_BIN_DESCRIPTION "Sample Filter\0"
  36. //
  37. // Also required, if you don't want the defaults, are
  38. //
  39. // #define VERSION_RES_ACTIVEX "Filter dll\0" (the default value)
  40. //
  41. // A string defining the type of component.
  42. //
  43. // #define VERSION_RES_TYPE VFT_DLL (default)
  44. // VFT_EXE
  45. // VFT_VXD
  46. // VFT_DRV
  47. // VFT_UNKNOWN
  48. //
  49. // #define VERSION_RES_SUBTYPE VFT2_UNKNOWN (default)
  50. // VFT2_DRV_INSTALLABLE
  51. // VFT2_DRV_SOUND
  52. //
  53. // See winver.h for further details
  54. #endif