#include <xqc.h>
Public Attributes | |
const char * | encoding |
The text encoding of the input data as a UTF-8 string, or 0 if unknown. | |
void * | user_data |
Can be used for user specific purposes. | |
unsigned int(* | read )(XQC_InputStream *stream, void *buffer, unsigned int length) |
The function called to read more of the input query. | |
void(* | free )(XQC_InputStream *stream) |
Called to free the resources associated with the XQC_InputStream. |
|
The text encoding of the input data as a UTF-8 string, or 0 if unknown.
The value of the string should conform to the |
|
Called to free the resources associated with the XQC_InputStream.
|
|
The function called to read more of the input query. The function should read the next chunk of input into the buffer provided, returning the length of the data read.
|
|
Can be used for user specific purposes.
|