mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
fix a header name
svn path=/trunk/; revision=33457
This commit is contained in:
parent
41758b941b
commit
fcaf6d5aef
1 changed files with 47 additions and 0 deletions
47
reactos/include/ddk/ntdd1394.h
Normal file
47
reactos/include/ddk/ntdd1394.h
Normal file
|
@ -0,0 +1,47 @@
|
|||
|
||||
#ifndef _NTDD1394_H_
|
||||
#define _NTDD1394_H_
|
||||
|
||||
#if (_MSC_VER >= 1020)
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct _IEEE1394_VDEV_PNP_REQUEST
|
||||
{
|
||||
ULONG fulFlags;
|
||||
ULONG Reserved;
|
||||
ULARGE_INTEGER InstanceId;
|
||||
UCHAR DeviceId;
|
||||
} IEEE1394_VDEV_PNP_REQUEST,*PIEEE1394_VDEV_PNP_REQUEST;
|
||||
|
||||
|
||||
typedef struct _IEEE1394_API_REQUEST
|
||||
{
|
||||
ULONG RequestNumber;
|
||||
ULONG Flags;
|
||||
union
|
||||
{
|
||||
IEEE1394_VDEV_PNP_REQUEST AddVirtualDevice;
|
||||
IEEE1394_VDEV_PNP_REQUEST RemoveVirtualDevice;
|
||||
} u;
|
||||
} IEEE1394_API_REQUEST, *PIEEE1394_API_REQUEST;
|
||||
|
||||
#define IEEE1394_API_ADD_VIRTUAL_DEVICE 0x00000001
|
||||
#define IEEE1394_API_REMOVE_VIRTUAL_DEVICE 0x00000002
|
||||
#define IEEE1394_REQUEST_FLAG_UNICODE 0x00000001
|
||||
#define IEEE1394_REQUEST_FLAG_PERSISTENT 0x00000002
|
||||
#define IEEE1394_REQUEST_FLAG_USE_LOCAL_HOST_EUI 0x00000004
|
||||
#define BUS1394_VIRTUAL_DEVICE_LIST_KEY L"Virtual Device List"
|
||||
#define BUS1394_LOCAL_HOST_INSTANCE_KEY L"LOCAL HOST EUI64"
|
||||
#define IOCTL_IEEE1394_API_REQUEST CTL_CODE(FILE_DEVICE_UNKNOWN, 0x100, METHOD_BUFFERED, FILE_ANY_ACCESS)
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in a new issue