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.

48 lines
1.5 KiB

  1. /****************************************************************************
  2. *
  3. * avicap.rcv
  4. *
  5. * Version control information
  6. *
  7. * Microsoft Video for Windows Sample Capture Class
  8. *
  9. * Copyright (c) 1992 - 1995 Microsoft Corporation. All Rights Reserved.
  10. *
  11. * You have a royalty-free right to use, modify, reproduce and
  12. * distribute the Sample Files (and/or any modified version) in
  13. * any way you find useful, provided that you agree that
  14. * Microsoft has no warranty obligations or liability for any
  15. * Sample Application Files which are modified.
  16. *
  17. * IMPORTANT: If compiling this sample code for your own use,
  18. * define USE_INTERNAL_VERSION_INFO to be 0 below!!!
  19. *
  20. ***************************************************************************/
  21. #ifdef CHICAGO
  22. #include <verinfo.h>
  23. #define VERSIONNAME "avicap32.dll\0"
  24. #define VERSIONDESCRIPTION "AVI Capture DLL\0"
  25. #define VERSIONTYPE VFT_DLL
  26. #define VERSIONSUBTYPE VFT2_UNKNOWN
  27. #include <verinfo.ver>
  28. #else
  29. #include <ntverp.h>
  30. /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
  31. * and VER_INTERNALNAME_STR must be defined before including COMMON.VER
  32. * The strings don't need a '\0', since common.ver has them.
  33. */
  34. #define VER_FILETYPE VFT_DLL
  35. #define VER_FILESUBTYPE VFT2_UNKNOWN //VFT2_DRV_INSTALLABLE
  36. #define VER_FILEDESCRIPTION_STR "AVI Capture window class"
  37. #define VER_INTERNALNAME_STR "AVICAP32.DLL"
  38. #define VER_ORIGINALFILENAME_STR "AVICAP32.DLL"
  39. #include "common.ver"
  40. #endif