2025-04-27 07:49:33 -04:00

24 lines
624 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifdef WIN32
#include <ntverp.h>
#define VER_FILETYPE VFT_DRV
#define VER_FILESUBTYPE VFT2_DRV_INSTALLABLE
#define VER_FILEDESCRIPTION_STR "Microsoft Video 1 Compressor"
#define VER_INTERNALNAME_STR "msvidc32.dll"
#define VER_ORIGINALFILENAME_STR "msvidc32.dll"
#include <common.ver>
#else
#include <ver.h>
#include <verinfo.h>
#define VERSIONNAME "msvidc.drv\0"
#define VERSIONDESCRIPTION "Microsoft Video 1 Compressor\0"
#define VERSIONTYPE VFT_DRV
#define VERSIONSUBTYPE VFT2_DRV_INSTALLABLE
#include <verinfo.ver>
#endif