summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_vfd.h
blob: 5f510f6415d5887265ac673f783e6d1b90e9fa66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _NT_VFD_H_
#define _NT_VFD_H_

#include "nt_abi.h"
#include "nt_object.h"
#include "nt_guid.h"

typedef struct _nt_vfd_dev_name {
	nt_unicode_string	name;
	wchar16_t		prefix[8];
	nt_guid_str_utf16	guid;
} nt_vfd_dev_name;


typedef void __stdcall ntapi_vfd_dev_name_init(
	__out	nt_vfd_dev_name *	devname,
	__in	const nt_guid *		guid);

#endif