~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/unireg.h

  • Committer: Brian Aker
  • Date: 2009-08-15 00:59:30 UTC
  • mfrom: (1115.1.7 merge)
  • Revision ID: brian@gaz-20090815005930-q47yenjrq1esiwsz
Merge of Trond + Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#ifndef DRIZZLED_UNIREG_H
24
24
#define DRIZZLED_UNIREG_H
25
25
 
26
 
namespace drizzled
27
 
{
 
26
#include <drizzled/structs.h>                           /* All structs we need */
28
27
 
29
28
void unireg_end(void) __attribute__((noreturn));
30
29
void unireg_abort(int exit_code) __attribute__((noreturn));
31
30
 
32
 
} /* namespace drizzled */
 
31
int rea_create_table(Session *session, const char *path,
 
32
                     const char *db, const char *table_name,
 
33
                     drizzled::message::Table *table_proto,
 
34
                     HA_CREATE_INFO *create_info,
 
35
                     List<CreateField> &create_field,
 
36
                     uint32_t key_count,KEY *key_info);
 
37
 
33
38
 
34
39
#endif /* DRIZZLED_UNIREG_H */