I have compiled and imported a dylib C Library called portaudio (PortAudio website) into an Xcode 6.1 Swift project, all the functions / types are accessible except for one which is
typedef void PaStream;
I am having trouble understanding how to use that in Swift, in C I declare it like:
PaStream *audioStream = NULL;
Can anybody help on the Swift equivalent as I get a warning saying undeclared Type / unresolved identifier, it looks like Swift can not bridge a typedef void xyz; ?
Many thanks for any help.