~linuxjedi/libdrizzle/5.1-fix-wine

« back to all changes in this revision

Viewing changes to libdrizzle-5.1/drizzle.h

  • Committer: Continuous Integration
  • Date: 2012-12-31 01:08:39 UTC
  • mfrom: (73.1.3 5.1-trunk)
  • Revision ID: ci@drizzle.org-20121231010839-8hg9bazx84mj03fw
Merge lp:~brianaker/libdrizzle/private-headers-connection-test Build: jenkins-Libdrizzle-25

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
DRIZZLE_API
211
211
void drizzle_set_log_fn(drizzle_st *con, drizzle_log_fn *function,
212
212
                        void *context);
213
 
 
214
 
/**
215
 
 * Initialize a connection structure. Always check the return value even if
216
 
 * passing in a pre-allocated structure. Some other initialization may have
217
 
 * failed.
218
 
 *
219
 
 * @param[in] drizzle Drizzle structure previously initialized with
220
 
 *  drizzle_create() or drizzle_clone().
221
 
 * @param[in] con Caller allocated structure, or NULL to allocate one.
222
 
 * @return On success, a pointer to the (possibly allocated) structure. On
223
 
 *  failure this will be NULL.
224
 
 */
225
 
DRIZZLE_LOCAL
226
 
drizzle_st *drizzle_create(void);
227
 
 
228
 
/**
229
 
 * Free a connection structure.
230
 
 *
231
 
 * @param[in] con Connection structure previously initialized with
232
 
 *  drizzle_create(), drizzle_clone(), or related functions.
233
 
 */
234
 
DRIZZLE_LOCAL
235
 
void drizzle_free(drizzle_st *con);
236
 
 
237
213
/**
238
214
 * Wait for I/O on connections.
239
215
 *