mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 07:36:21 +00:00
[REACTOS] Fix 64 bit build (#465)
* [HAL] Simplify HalpReboot() and make it portable * [NTOS:MM] Cast constant to PVOID * [BINPATCH] Fix 64 bit build * [VFDDRV] Fix 64 bit build and buffer overruns * [USBOHCI] Fix structure alignment issues * [ATL_APITEST] Fix 64 bit build * [XDK] Update unwind structures in winnt.h * [NTDLL_APITEST] Fix 64 bit build * [NTDLL_WINETEST] Fix 64 bit build * [TFTPD] Fix x64 build * [USBPORT] Fix a C_ASSERT * [DSOUND] Fix x64 build * [HAL] Remove obsolete GetPteAddress() macro
This commit is contained in:
parent
d5f744ff31
commit
6b1ca75899
24 changed files with 243 additions and 85 deletions
|
@ -248,7 +248,11 @@ VfdQueryImage(
|
|||
IN PDEVICE_EXTENSION DeviceExtension,
|
||||
OUT PVFD_IMAGE_INFO ImageInfo,
|
||||
IN ULONG BufferLength,
|
||||
#ifndef __REACTOS__
|
||||
OUT PULONG ReturnLength);
|
||||
#else
|
||||
OUT PSIZE_T ReturnLength);
|
||||
#endif
|
||||
|
||||
//
|
||||
// vfdrdwr.c
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue