~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle-2.0/query.h

  • Committer: Mark Atwood
  • Date: 2011-11-30 07:06:47 UTC
  • mfrom: (2463.1.6 drizzle-include)
  • Revision ID: me@mark.atwood.name-20111130070647-ixp7oalp70hkbt6l
mergeĀ lp:~brianaker/drizzle/libdrizzle-2.0-not-install

Show diffs side-by-side

added added

removed removed

Lines of Context:
164
164
 * Get options for a query. 
165
165
 */
166
166
DRIZZLE_API
167
 
int drizzle_query_options(drizzle_query_st *query);
 
167
int drizzle_query_options(drizzle_query_st *);
168
168
 
169
169
/**
170
170
 * Set options for a query.
171
171
 */
172
172
DRIZZLE_API
173
 
void drizzle_query_set_options(drizzle_query_st *query,
174
 
                               int options);
 
173
void drizzle_query_set_options(drizzle_query_st *, int);
175
174
 
176
175
/**
177
176
 * Add options for a query.
178
177
 */
179
178
DRIZZLE_API
180
 
void drizzle_query_add_options(drizzle_query_st *query,
181
 
                               int options);
 
179
void drizzle_query_add_options(drizzle_query_st *, int);
182
180
 
183
181
/**
184
182
 * Remove options for a query.
185
183
 */
186
184
DRIZZLE_API
187
 
void drizzle_query_remove_options(drizzle_query_st *query,
188
 
                                  int options);
 
185
void drizzle_query_remove_options(drizzle_query_st *, int);
189
186
 
190
187
/**
191
188
 * Get application context for a query.