summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_vfd.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ntapi/nt_vfd.h')
-rw-r--r--include/ntapi/nt_vfd.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/ntapi/nt_vfd.h b/include/ntapi/nt_vfd.h
new file mode 100644
index 0000000..18185aa
--- /dev/null
+++ b/include/ntapi/nt_vfd.h
@@ -0,0 +1,20 @@
+#ifndef _NT_VFD_H_
+#define _NT_VFD_H_
+
+#include <psxtypes/psxtypes.h>
+#include <dalist/dalist.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