~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_dir.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:
22
22
#ifndef MY_DIR_H
23
23
#define MY_DIR_H
24
24
 
 
25
#include <drizzled/definitions.h>
25
26
#include <sys/stat.h>
26
27
 
27
28
#define MY_DONT_SORT    512     /* my_lib; Don't sort files */
37
38
typedef struct st_my_dir        /* Struct returned from my_dir */
38
39
{
39
40
  /*
40
 
    These members are just copies of parts of DYNAMIC_ARRAY structure, 
 
41
    These members are just copies of parts of DYNAMIC_ARRAY structure,
41
42
    which is allocated right after the end of MY_DIR structure (MEM_ROOT
42
43
    for storing names is also resides there). We've left them here because
43
44
    we don't want to change code that uses my_dir.
46
47
  uint                  number_off_files;
47
48
} MY_DIR;
48
49
 
49
 
extern MY_DIR *my_dir(const char *path,myf MyFlags);
 
50
extern MY_DIR *my_dir(const char *path, myf MyFlags);
50
51
extern void my_dirend(MY_DIR *buffer);
51
52
 
52
53
#endif /* MY_DIR_H */