Hello together,
In ipc.c, function InternalIpcMemoryCreate there is the following line of code:
memAddress = shmat(shmid, 0, 0);
this line should be changed to:
memAddress = (void *) shmat(shmid, 0, 0);
at function IpcMemoryCreate there is the following line of code:
memAddress = shmat(shmid, 0, 0);
this line should be changed to:
memAddress = (void *) shmat(shmid, 0, 0);
This will avoid problems with MetroWerks CodeWarrior compiler.
Thanks
Ulrich Neumann