~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle-2.0/drizzle_client.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:
81
81
 * @return Same return as drizzle_con_create().
82
82
 */
83
83
DRIZZLE_API
84
 
drizzle_con_st *drizzle_con_add_tcp(drizzle_st *drizzle, drizzle_con_st *con,
 
84
drizzle_con_st *drizzle_con_add_tcp(drizzle_st *drizzle,
85
85
                                    const char *host, in_port_t port,
86
86
                                    const char *user, const char *password,
87
87
                                    const char *db,
101
101
 * @return Same return as drizzle_con_create().
102
102
 */
103
103
DRIZZLE_API
104
 
drizzle_con_st *drizzle_con_add_uds(drizzle_st *drizzle, drizzle_con_st *con,
 
104
drizzle_con_st *drizzle_con_add_uds(drizzle_st *drizzle,
105
105
                                    const char *uds, const char *user,
106
106
                                    const char *password, const char *db,
107
107
                                    drizzle_con_options_t options);