mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 20:03:12 +00:00
[UDFS] Fix 64 bit issues
This commit is contained in:
parent
be97da34ac
commit
c334c17d69
23 changed files with 257 additions and 246 deletions
|
@ -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
|
||||
)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue