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 _IRP IRP;
typedef struct _DEVMAN DEVMAN; typedef struct _DEVMAN DEVMAN;
typedef UINT (*pcIRPRequest)(DEVICE* device, IRP* irp); typedef UINT(*pcIRPRequest)(DEVICE* device, IRP* irp);
typedef UINT (*pcInitDevice)(DEVICE* device); typedef UINT(*pcInitDevice)(DEVICE* device);
typedef UINT (*pcFreeDevice)(DEVICE* device); typedef UINT(*pcFreeDevice)(DEVICE* device);
struct _DEVICE struct _DEVICE
{ {
@ -333,11 +333,11 @@ struct _DEVICE
pcFreeDevice Free; pcFreeDevice Free;
}; };
typedef UINT (*pcIRPResponse)(IRP* irp); typedef UINT(*pcIRPResponse)(IRP* irp);
struct _IRP struct _IRP
{ {
WINPR_SLIST_ENTRY ItemEntry; WINPR_SLIST_ENTRY ItemEntry;
DEVICE* device; DEVICE* device;
DEVMAN* devman; DEVMAN* devman;
@ -364,7 +364,7 @@ struct _DEVMAN
wListDictionary* devices; wListDictionary* devices;
}; };
typedef UINT (*pcRegisterDevice)(DEVMAN* devman, DEVICE* device); typedef UINT(*pcRegisterDevice)(DEVMAN* devman, DEVICE* device);
struct _DEVICE_SERVICE_ENTRY_POINTS 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 struct _DEVICE_SERVICE_ENTRY_POINTS DEVICE_SERVICE_ENTRY_POINTS;
typedef DEVICE_SERVICE_ENTRY_POINTS* PDEVICE_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 */ #endif /* FREERDP_CHANNEL_RDPDR_H */