~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle-2.0/drizzle.h

  • Committer: Brian Aker
  • Date: 2011-11-24 00:05:44 UTC
  • mto: This revision was merged to the branch mainline in revision 2465.
  • Revision ID: brian@tangent.org-20111124000544-186obn61qr3b7r9x
First pass, drizzle_create() no longer takes an argument. This means that we can now change drizzle_st without being concerned about ABI.

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
 * failure this will be NULL.
153
153
 */
154
154
DRIZZLE_API
155
 
drizzle_st *drizzle_create(drizzle_st *drizzle);
 
155
drizzle_st *drizzle_create();
156
156
 
157
157
/**
158
158
 * Clone a drizzle structure.
162
162
 * @return Same return as drizzle_create().
163
163
 */
164
164
DRIZZLE_API
165
 
drizzle_st *drizzle_clone(drizzle_st *drizzle, const drizzle_st *from);
 
165
drizzle_st *drizzle_clone(const drizzle_st *from);
166
166
 
167
167
/**
168
168
 * Free a drizzle structure.