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.

29 lines
704 B

  1. #ifdef WIN32
  2. #include <ntverp.h>
  3. #define VER_FILETYPE VFT_DLL
  4. #define VER_FILESUBTYPE VFT2_UNKNOWN
  5. #define VER_FILEDESCRIPTION_STR "Microsoft Video for Windows DLL"
  6. #define VER_INTERNALNAME_STR "msvfw32.dll"
  7. #define VER_ORIGINALFILENAME_STR "msvfw32.dll"
  8. #include <common.ver>
  9. #else
  10. #include <ver.h>
  11. #include <verinfo.h>
  12. #ifdef WIN32
  13. #define VERSIONNAME "msvfw32.dll\0"
  14. #else
  15. #define VERSIONNAME "msvideo.dll\0"
  16. #endif
  17. #define VERSIONDESCRIPTION "Microsoft Video for Windows DLL\0"
  18. #define VERSIONTYPE VFT_DLL
  19. #define VERSIONSUBTYPE VFT2_UNKNOWN
  20. #include <verinfo.ver>
  21. #endif