home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / activex.ver < prev    next >
Text File  |  1998-04-25  |  2KB  |  63 lines

  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) 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.  
  21. #ifndef _ACTIVEX_VER_
  22. #define _ACTIVEX_VER_
  23.  
  24. // NOTE! all string resources that will be used in ACTIVEX.RCV for the
  25. // version resource information *MUST* have an explicit \0 terminator!
  26.  
  27. #define VERSION_RES_MAJOR_VER   1
  28. #define VERSION_RES_MINOR_VER   0
  29. #define VERSION_RES_BUILD       0
  30.  
  31. #define VERSION_RES_STRING_D    "1.00 (Debug)\0"
  32. #define VERSION_RES_STRING      "1.00\0"
  33.  
  34. #define VERSION_RES_PRODUCT_NAME  "MyProductName\0"
  35. #define VERSION_RES_COMPANY_NAME  "MyCompanyName\0"
  36. #define VERSION_RES_COPYRIGHT     "Copyright (C) 1997 MyCompanyName.\0"
  37.  
  38. // The following defines are required on a file-by-file basis
  39. //
  40. // #define VERSION_RES_BIN_NAME         "sample.ax\0"
  41. // #define VERSION_RES_BIN_DESCRIPTION  "Sample Filter\0"
  42. //
  43. // Also required, if you don't want the defaults, are
  44. //
  45. // #define VERSION_RES_ACTIVEX  "Filter dll\0" (the default value)
  46. //
  47. // A string defining the type of component.
  48. //
  49. // #define VERSION_RES_TYPE     VFT_DLL (default)
  50. //                              VFT_EXE
  51. //                              VFT_VXD
  52. //                              VFT_DRV
  53. //                              VFT_UNKNOWN
  54. //
  55. // #define VERSION_RES_SUBTYPE  VFT2_UNKNOWN (default)
  56. //                              VFT2_DRV_INSTALLABLE
  57. //                              VFT2_DRV_SOUND
  58. //
  59. // See winver.h for further details
  60.  
  61. #endif
  62.  
  63.