~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzleclient/drizzle_data.h

  • Committer: Brian Aker
  • Date: 2009-02-05 10:38:55 UTC
  • Revision ID: brian@tangent.org-20090205103855-wajzccrbu7zbvmh4
Reworked some classes out of session.h
Also updated ignore file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef _libdrizzle_drizzle_data_h
21
 
#define _libdrizzle_drizzle_data_h
 
20
#ifndef LIBDRIZZLECLIENT_DRIZZLE_DATA_H
 
21
#define LIBDRIZZLECLIENT_DRIZZLE_DATA_H
 
22
 
 
23
#include "drizzle_rows.h"
 
24
#include "drizzle_field.h"
22
25
 
23
26
#include <stdint.h>
24
 
#include <stdbool.h>
25
 
#include <libdrizzle/drizzle_rows.h>
26
 
#include <libdrizzle/drizzle_field.h>
 
27
#if !defined(__cplusplus)
 
28
# include <stdbool.h>
 
29
#endif
27
30
 
28
31
typedef struct st_drizzle_data {
29
32
  DRIZZLE_ROWS *data;
44
47
}
45
48
#endif
46
49
 
47
 
#endif /* _libdrizzle_drizzle_data_h */
 
50
#endif /* LIBDRIZZLECLIENT_DATA_H */