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.

22 lines
620 B

  1. #ifdef WIN32
  2. #include <ntverp.h>
  3. #define VER_FILETYPE VFT_DRV
  4. #define VER_FILESUBTYPE VFT2_DRV_INSTALLABLE
  5. #define VER_FILEDESCRIPTION_STR "Video For Windows MCI driver"
  6. #define VER_INTERNALNAME_STR "mciavi32.dll"
  7. #define VER_ORIGINALFILENAME_STR "mciavi32.dll"
  8. #include <common.ver>
  9. #else
  10. #include <ver.h>
  11. #include <verinfo.h>
  12. #define VERSIONNAME "mciavi.drv\0"
  13. #define VERSIONDESCRIPTION "MCI driver for AVI\0"
  14. #define VERSIONTYPE VFT_DRV
  15. #define VERSIONSUBTYPE VFT2_DRV_INSTALLABLE
  16. #include <verinfo.ver>
  17. #endif
  18.