~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/drizzle.h

  • Committer: Monty Taylor
  • Date: 2008-09-16 04:26:53 UTC
  • mto: This revision was merged to the branch mainline in revision 391.
  • Revision ID: monty@inaugust.com-20080916042653-59fgd0y0lbw6ohna
Oh dear god the changes. The changes. I'd tell you what they are, but I'd just be making stuff up. Suffice it to day it's mostly all around splitting files in libdrizzle into different files and removing interdepends. And whatever else I happened to see... 

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef _libdrizzle_drizzle_h
21
21
#define _libdrizzle_drizzle_h
22
22
 
23
 
#ifdef  __cplusplus
24
 
extern "C" {
25
 
#endif
26
23
 
27
24
#include <stdint.h>
28
25
#include <stdbool.h>
30
27
#include <libdrizzle/drizzle_field.h>
31
28
#include <libdrizzle/drizzle_options.h>
32
29
#include <libdrizzle/drizzle_res.h>
 
30
#include <libdrizzle/net_serv.h>
33
31
 
 
32
#ifdef  __cplusplus
 
33
extern "C" {
 
34
#endif
34
35
 
35
36
struct st_drizzle_methods;
36
37