Go to the source code of this file.
Functions | |
void | st_init_query_functions (struct dd_function_table *functions) |
void st_init_query_functions | ( | struct dd_function_table * | functions | ) |
Definition at line 163 of file st_cb_queryobj.c.
References st_BeginQuery(), st_CheckQuery(), st_DeleteQuery(), st_EndQuery(), st_NewQueryObject(), and st_WaitQuery().
00164 { 00165 functions->NewQueryObject = st_NewQueryObject; 00166 functions->DeleteQuery = st_DeleteQuery; 00167 functions->BeginQuery = st_BeginQuery; 00168 functions->EndQuery = st_EndQuery; 00169 functions->WaitQuery = st_WaitQuery; 00170 functions->CheckQuery = st_CheckQuery; 00171 }