~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/myisam.h

Remove PLUGIN and MODULES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
#include <drizzled/base.h>
28
28
#ifndef _m_ctype_h
29
 
#include <mystrings/m_ctype.h>
 
29
#include "drizzled/charset_info.h"
30
30
#endif
31
31
#ifndef _keycache_h
32
32
#include "keycache.h"
33
33
#endif
34
34
#include <plugin/myisam/my_handler.h>
35
 
#include <mysys/iocache.h>
 
35
#include "drizzled/internal/iocache.h"
36
36
 
37
37
/*
38
38
  Limit max keys according to HA_MAX_POSSIBLE_KEY
145
145
  uint  options;                        /* HA_OPTION_... used */
146
146
  int   errkey,                         /* With key was dupplicated on err */
147
147
        sortkey;                        /* clustered by this key */
148
 
  File  filenr;                         /* (uniq) filenr for datafile */
 
148
  int   filenr;                         /* (uniq) filenr for datafile */
149
149
  time_t create_time;                   /* When table was created */
150
150
  time_t check_time;
151
151
  time_t update_time;
459
459
void update_key_parts(MI_KEYDEF *keyinfo, ulong *rec_per_key_part,
460
460
                      uint64_t *unique, uint64_t *notnull,
461
461
                      uint64_t records);
462
 
int filecopy(MI_CHECK *param, File to,File from,my_off_t start,
 
462
int filecopy(MI_CHECK *param, int to,int from,my_off_t start,
463
463
             my_off_t length, const char *type);
464
464
int movepoint(MI_INFO *info,unsigned char *record,my_off_t oldpos,
465
465
              my_off_t newpos, uint32_t prot_key);