[UDFS] Fix 64 bit issues

This commit is contained in:
Timo Kreuzer 2018-08-20 19:02:00 +02:00
parent be97da34ac
commit c334c17d69
23 changed files with 257 additions and 246 deletions

View file

@ -130,9 +130,9 @@ NTAPI
UDFPhReadSynchronous(
PDEVICE_OBJECT DeviceObject, // the physical device object
PVOID Buffer,
ULONG Length,
SIZE_T Length,
LONGLONG Offset,
PULONG ReadBytes,
PSIZE_T ReadBytes,
ULONG Flags
)
{
@ -276,9 +276,9 @@ NTAPI
UDFPhWriteSynchronous(
PDEVICE_OBJECT DeviceObject, // the physical device object
PVOID Buffer,
ULONG Length,
SIZE_T Length,
LONGLONG Offset,
PULONG WrittenBytes,
PSIZE_T WrittenBytes,
ULONG Flags
)
{
@ -422,9 +422,9 @@ NTSTATUS
UDFPhWriteVerifySynchronous(
PDEVICE_OBJECT DeviceObject, // the physical device object
PVOID Buffer,
ULONG Length,
SIZE_T Length,
LONGLONG Offset,
PULONG WrittenBytes,
PSIZE_T WrittenBytes,
ULONG Flags
)
{