~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/unireg.h

  • Committer: Stewart Smith
  • Date: 2009-06-16 00:45:15 UTC
  • mto: (1119.2.6 merge)
  • mto: This revision was merged to the branch mainline in revision 1124.
  • Revision ID: stewart@flamingspork.com-20090616004515-bgr8e62psvn2820l
make snowman test not leave tables behind after running

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
23
23
#ifndef DRIZZLED_UNIREG_H
24
24
#define DRIZZLED_UNIREG_H
25
25
 
26
 
#include "drizzled/visibility.h"
27
 
 
28
 
namespace drizzled
29
 
{
30
 
 
31
 
DRIZZLED_API void unireg_abort(int exit_code) __attribute__((noreturn));
32
 
 
33
 
} /* namespace drizzled */
 
26
#include <drizzled/structs.h>                           /* All structs we need */
 
27
 
 
28
void unireg_end(void) __attribute__((noreturn));
 
29
void unireg_abort(int exit_code) __attribute__((noreturn));
 
30
 
 
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
 
34
38
 
35
39
#endif /* DRIZZLED_UNIREG_H */