Just trying to implement the new .a file. So I overwrote the original .a file with the one held in the latest release, and then added the extra close function in GLB like this:-
?IFDEF IPHONE
IMPORT "C" void GLB_iBT_Init()
IMPORT "C" void GLB_iBT_Start(const char* sessID)
IMPORT "C" int GLB_iBT_Send(const char* strValue)
IMPORT "C" const char* GLB_iBT_Recv()
IMPORT "C" int GLB_iBT_Connected()
IMPORT "C" void GLB_iBT_Close()
?ELSE
FUNCTION GLB_iBT_Init:
ENDFUNCTION
FUNCTION GLB_iBT_Start: iBTID$
ENDFUNCTION
FUNCTION GLB_iBT_Send: iBTMessage$
ENDFUNCTION
FUNCTION GLB_iBT_Recv:
ENDFUNCTION
FUNCTION GLB_iBT_Connected:
ENDFUNCTION
FUNCTION GLB_iBT_Close:
ENDFUNCTION
?ENDIF
And then I reference GLB_iBT_Close in my GLB code, but in Xcode I am getting an error saying Symbol(s) not found for _GLB_iBT_Close. Where am I going wrong?
Cheers