~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-26 23:14:59 UTC
  • mto: This revision was merged to the branch mainline in revision 2465.
  • Revision ID: brian@tangent.org-20111126231459-pa9i3arizevf0vlr
Remove con from being passed object.

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
 
 
63
 
drizzle_result_st *drizzle_result_create_with(drizzle_con_st *con,
64
 
                                              drizzle_result_st *result);
 
61
drizzle_result_st *drizzle_result_create(drizzle_con_st *con,
 
62
                                         drizzle_result_st *result);
65
63
 
66
64
/**
67
65
 * Clone a connection structure.
68
66
 */
69
67
DRIZZLE_API
70
 
  drizzle_result_st *drizzle_result_clone(drizzle_con_st *con,
71
 
                                          drizzle_result_st *source);
 
68
drizzle_result_st *drizzle_result_clone(drizzle_con_st *con,
 
69
                                        drizzle_result_st *result,
 
70
                                        drizzle_result_st *from);
72
71
 
73
72
/**
74
73
 * Free a result structure.