Re: [PATCH] winedevice: Use 64-bit wide delta when relocating

2010-06-23 Thread Dmitry Timoshkov
Alessandro Pignotti wrote: > @@ -67,7 +67,8 @@ static HMODULE load_driver_module( const WCHAR *name ) > IMAGE_NT_HEADERS *nt; > const IMAGE_IMPORT_DESCRIPTOR *imports; > size_t page_size = getpagesize(); > -int i, delta; > +int i; > +intptr_t delta; You need to use SDK

Re: [PATCH] winedevice: Use 64-bit wide delta when relocating

2010-06-22 Thread Austin English
On Tue, Jun 22, 2010 at 8:31 PM, wrote: > Hi Everyone, > > when using Wine64 relocations should use 64-bit wide deltas, winedevice was > not compliant with this. Patch follows > > Regards, > Alessandro Pignotti Patches should be sent to wine-patc...@winehq.org -- -Austin

[PATCH] winedevice: Use 64-bit wide delta when relocating

2010-06-22 Thread alex . pigna
Hi Everyone, when using Wine64 relocations should use 64-bit wide deltas, winedevice was not compliant with this. Patch follows Regards, Alessandro Pignotti --- programs/winedevice/device.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/programs/winedevice/device.c