~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle-2.0/result.h

  • Committer: Brian Aker
  • Date: 2011-11-27 01:25:57 UTC
  • mto: This revision was merged to the branch mainline in revision 2465.
  • Revision ID: brian@tangent.org-20111127012557-vxph9h1v32v3m1bz
Move result over to being behind API.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
 * Initialize a result structure.
59
59
 */
60
60
DRIZZLE_API
61
 
drizzle_result_st *drizzle_result_create(drizzle_con_st *con,
62
 
                                         drizzle_result_st *result);
 
61
drizzle_result_st *drizzle_result_create(drizzle_con_st *con);
 
62
 
 
63
drizzle_result_st *drizzle_result_create_with(drizzle_con_st *con,
 
64
                                              drizzle_result_st *result);
63
65
 
64
66
/**
65
67
 * Clone a connection structure.
66
68
 */
67
69
DRIZZLE_API
68
 
drizzle_result_st *drizzle_result_clone(drizzle_con_st *con,
69
 
                                        drizzle_result_st *result,
70
 
                                        drizzle_result_st *from);
 
70
  drizzle_result_st *drizzle_result_clone(drizzle_con_st *con,
 
71
                                          drizzle_result_st *source);
71
72
 
72
73
/**
73
74
 * Free a result structure.