18 lines
412 B
Plaintext
18 lines
412 B
Plaintext
#include <windows.h>
|
|
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "SNI RM200/RM300/RM400 Hardware Abstraction Layer DLL"
|
|
#define VER_INTERNALNAME_STR "hal.dll"
|
|
#if defined(SNI_INTERNAL)
|
|
#define VER_FILEVERSION_STR "3.0 A0008"
|
|
|
|
#include "pcisupp.ver"
|
|
#else
|
|
#define VER_FILEVERSION_STR "3.0 B0008"
|
|
#endif
|
|
#include "common.ver"
|
|
|