blob: 782e4316c6008971f96823f4f74fe37733bc1d43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "resource.h"
#include <windows.h>
#include <ntverp.h>
#define VER_FILETYPE VFT_DLL
#define VER_FILESUBTYPE VFT2_UNKNOWN
#define VER_FILEDESCRIPTION_STR "Windows Portable Device Hello World Sample Driver"
#define VER_INTERNALNAME_STR "WpdHelloWorldDriver.dll"
#include <common.ver>
1 TYPELIB "WpdHelloWorldDriver.tlb"
IDR_WpdHelloWorldDriver REGISTRY "WpdHelloWorldDriver.rgs"
|