~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/my_handler.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-03-21 20:26:28 UTC
  • mto: (960.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 961.
  • Revision ID: osullivan.padraig@gmail.com-20090321202628-nh6qsi825m4d4av6
Removing the queues.[h,cc] files from the mysys directory. The only place
where they are needed now is in the MyISAM storage engine. Thus, I moved the
files there and updated the files in the MyISAM storage engine
appropriately.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#ifndef _my_handler_h
19
19
#define _my_handler_h
20
20
 
 
21
#include <mystrings/m_ctype.h>
21
22
#include <storage/myisam/myisampack.h>
 
23
#include <storage/myisam/my_list.h>
 
24
#include <storage/myisam/queues.h>
22
25
#ifdef  __cplusplus
23
26
extern "C" {
24
27
#endif
109
112
extern int ha_compare_text(const CHARSET_INFO * const, unsigned char *, uint, unsigned char *, uint, bool, bool);
110
113
 
111
114
extern HA_KEYSEG *ha_find_null(HA_KEYSEG *keyseg, unsigned char *a);
112
 
extern void my_handler_error_register(void);
113
 
extern void my_handler_error_unregister(void);
 
115
void my_handler_error_register(void);
 
116
void my_handler_error_unregister(void);
114
117
extern int ha_key_cmp(HA_KEYSEG *keyseg, unsigned char *a,unsigned char *b,
115
118
                      uint32_t key_length,uint32_t nextflag,uint32_t *diff_length);
116
119