windows-nt/Source/XPSP1/NT/public/sdk/inc/verinfo.h
2020-09-26 16:20:57 +08:00

26 lines
910 B
C

#if _MSC_VER > 1000
#pragma once
#endif
#ifdef RC_INVOKED
#include <ver.h>
#define VER_FILEVERSION_STR "2.01\0"
#define VER_FILEVERSION 2,01,0100,06
#define VER_PRODUCTNAME_STR "Microsoft OLE 2.01 for Windows\0"
#define VER_COMPANYNAME_STR "Microsoft Corporation\0"
#define VER_LEGALTRADEMARKS_STR "Microsoft (R) is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation\0"
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) Microsoft Corp. 1992-1999\0"
#define VER_PRODUCTVERSION_STR "2.01\0"
#define VER_PRODUCTVERSION 2,01,0100,06
#define VER_COMMENT_STR "Windows OLE DLLs\0"
#define VER_FILETYPE VFT_DLL
#define VER_FILESUBTYPE 0
#define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
#define VER_FILEFLAGS 0L
#define VER_FILEOS VOS_DOS_WINDOWS16
#endif /* RC_INVOKED */