Hi,
within the sources of OMNI 0.7.0 there are some
casts
from pointer to int or ULONG which cause trouble with
adressing greater than 32 bits.
Also the interface of ghostscript shouldn't use lines like
if (fDebugOutput) fprintf (stderr, "OpenDevice:
pDev = %08x, pDev->hmodOmni = %08x\n", (in)pDev,
(int)pDev->hmodOmni);
but somthing like
if (fDebugOutput) fprintf (stderr, "OpenDevice: pDev =
%p, pDev->hmodOmni = %p\n", pDev, pDev->hmodOmni);
Werner
Changes for 64bit support of OMNI