~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle-2.0/column_server.h

  • Committer: Brian Aker
  • Date: 2011-11-04 21:06:16 UTC
  • mto: This revision was merged to the branch mainline in revision 2450.
  • Revision ID: brian@tangent.org-20111104210616-2at42agch94dkwb0
Additional fixes for libdrizzle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 *
35
35
 */
36
36
 
37
 
#pragma once
38
 
 
39
37
/**
40
38
 * @file
41
39
 * @brief Column Declarations for Servers
42
40
 */
43
41
 
 
42
#ifndef __DRIZZLE_COLUMN_SERVER_H
 
43
#define __DRIZZLE_COLUMN_SERVER_H
 
44
 
44
45
#ifdef __cplusplus
45
46
extern "C" {
46
47
#endif
71
72
 */
72
73
DRIZZLE_API
73
74
void drizzle_column_set_db(drizzle_column_st *column, const char *db);
74
 
 
75
 
DRIZZLE_API
76
 
void drizzle_column_set_schema(drizzle_column_st *column, const char *schema);
77
75
 
78
76
/**
79
77
 * Set table name for a column.
147
145
#ifdef __cplusplus
148
146
}
149
147
#endif
 
148
 
 
149
#endif /* __DRIZZLE_COLUMN_SERVER_H */