Reads string information out of an HTBasic Buffer. The C++ function declaration is:
int GetBuffer(void * IOPath,char * data, long len)
A sample of the command is:
char data[20];
GetBuffer(buffer,data,15) // read 15 bytes from buffer
|