--- sourceforge.net/trunk/rdesktop/types.h 2003/07/01 09:31:25 432 +++ sourceforge.net/trunk/rdesktop/types.h 2003/07/09 09:18:20 435 @@ -125,11 +125,10 @@ typedef struct _DEVICE_FNS { - NTSTATUS (*create)(HANDLE *handle); - NTSTATUS (*close)(HANDLE handle); - NTSTATUS (*read)(HANDLE handle, uint8 *data, uint32 length, uint32 *result); - NTSTATUS (*write)(HANDLE handle, uint8 *data, uint32 length, uint32 *result); - NTSTATUS (*device_control)(HANDLE handle, uint32 request, STREAM in, STREAM out); + NTSTATUS(*create) (HANDLE * handle); + NTSTATUS(*close) (HANDLE handle); + NTSTATUS(*read) (HANDLE handle, uint8 * data, uint32 length, uint32 * result); + NTSTATUS(*write) (HANDLE handle, uint8 * data, uint32 length, uint32 * result); + NTSTATUS(*device_control) (HANDLE handle, uint32 request, STREAM in, STREAM out); } DEVICE_FNS; -