I have a problem with a wrapped function:
In C people use the function this way:
Code: Select all
short* vChunk1 = libNanoSID_GenerateNextChunk(pSIDChip);
Code: Select all
short* libNanoSID_GenerateNextChunk(void* pSIDChip);
Code: Select all
extern short* _stdcall PB_libNanoSID_GenerateNextChunk(void* pSIDChip)
{
return libNanoSID_GenerateNextChunk(pSIDChip);
}
Code: Select all
chunk=libNanoSID_GenerateNextChunk(pSIDChip)

Thank you + MFG
WolfgangS
Edit:
And this is the important part from the .desc file:
Code: Select all
libNanoSID_GenerateNextChunk, Long (pSIDChip.l) - Generates next chunk and returns the synthetized waveform
Long