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.

36 lines
971 B

  1. #ifndef _WIN32 //!!!!
  2. #include <ver.h>
  3. #endif
  4. #ifndef NT_VERSION
  5. #include <verinfo.h>
  6. #ifdef _WIN32
  7. #define VERSIONNAME "avifil32.dll\0"
  8. #else
  9. #define VERSIONNAME "avifile.dll\0"
  10. #endif
  11. #define VERSIONDESCRIPTION "Microsoft AVI File support library\0"
  12. #define VERSIONTYPE VFT_DLL
  13. #define VERSIONSUBTYPE VFT2_DRV_INSTALLABLE
  14. #include <verinfo.ver>
  15. #endif
  16. #ifdef NT_VERSION
  17. #include <ntverp.h>
  18. /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
  19. * and VER_INTERNALNAME_STR must be defined before including COMMON.VER
  20. * The strings don't need a '\0', since common.ver has them.
  21. */
  22. #define VER_FILETYPE VFT_DLL
  23. #define VER_FILESUBTYPE VFT2_DRV_INSTALLABLE
  24. #define VER_FILEDESCRIPTION_STR "Microsoft AVI File support library"
  25. #define VER_INTERNALNAME_STR "AVIFIL32.DLL"
  26. #define VER_ORIGINALFILENAME_STR "AVIFIL32.DLL"
  27. #include <common.ver>
  28. #endif