Reformatted file.

This commit is contained in:
Armin Novak 2016-10-04 09:00:01 +02:00
parent 032b59f93c
commit 9a34e4383e

View File

@ -316,9 +316,9 @@ typedef struct _DEVICE DEVICE;
typedef struct _IRP IRP;
typedef struct _DEVMAN DEVMAN;
typedef UINT (*pcIRPRequest)(DEVICE* device, IRP* irp);
typedef UINT (*pcInitDevice)(DEVICE* device);
typedef UINT (*pcFreeDevice)(DEVICE* device);
typedef UINT(*pcIRPRequest)(DEVICE* device, IRP* irp);
typedef UINT(*pcInitDevice)(DEVICE* device);
typedef UINT(*pcFreeDevice)(DEVICE* device);
struct _DEVICE
{
@ -333,7 +333,7 @@ struct _DEVICE
pcFreeDevice Free;
};
typedef UINT (*pcIRPResponse)(IRP* irp);
typedef UINT(*pcIRPResponse)(IRP* irp);
struct _IRP
{
@ -364,7 +364,7 @@ struct _DEVMAN
wListDictionary* devices;
};
typedef UINT (*pcRegisterDevice)(DEVMAN* devman, DEVICE* device);
typedef UINT(*pcRegisterDevice)(DEVMAN* devman, DEVICE* device);
struct _DEVICE_SERVICE_ENTRY_POINTS
{
@ -377,6 +377,6 @@ struct _DEVICE_SERVICE_ENTRY_POINTS
typedef struct _DEVICE_SERVICE_ENTRY_POINTS DEVICE_SERVICE_ENTRY_POINTS;
typedef DEVICE_SERVICE_ENTRY_POINTS* PDEVICE_SERVICE_ENTRY_POINTS;
typedef UINT (*PDEVICE_SERVICE_ENTRY)(PDEVICE_SERVICE_ENTRY_POINTS);
typedef UINT(*PDEVICE_SERVICE_ENTRY)(PDEVICE_SERVICE_ENTRY_POINTS);
#endif /* FREERDP_CHANNEL_RDPDR_H */