~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/my_sys.h

  • Committer: Brian Aker
  • Date: 2008-07-14 04:46:28 UTC
  • Revision ID: brian@tangent.org-20080714044628-mk3nt2rbaeqt8oe9
Removed oddball types in my_global.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
619
619
extern char * my_load_path(char * to, const char *path,
620
620
                              const char *own_path_prefix);
621
621
extern int wild_compare(const char *str,const char *wildstr,
622
 
                        pbool str_is_pattern);
 
622
                        bool str_is_pattern);
623
623
extern WF_PACK *wf_comp(char * str);
624
624
extern int wf_test(struct wild_file_pack *wf_pack,const char *name);
625
625
extern void wf_end(struct wild_file_pack *buffer);
628
628
                                          const char **array, size_t size);
629
629
extern void get_date(char * to,int timeflag,time_t use_time);
630
630
extern void soundex(CHARSET_INFO *, char * out_pntr, char * in_pntr,
631
 
                    pbool remove_garbage);
 
631
                    bool remove_garbage);
632
632
extern int init_record_cache(RECORD_CACHE *info,size_t cachesize,File file,
633
633
                             size_t reclength,enum cache_type type,
634
 
                             pbool use_async_io);
 
634
                             bool use_async_io);
635
635
extern int read_cache_record(RECORD_CACHE *info,uchar *to);
636
636
extern int end_record_cache(RECORD_CACHE *info);
637
637
extern int write_cache_record(RECORD_CACHE *info,my_off_t filepos,
654
654
my_off_t my_get_ptr(uchar *ptr, size_t pack_length);
655
655
extern int init_io_cache(IO_CACHE *info,File file,size_t cachesize,
656
656
                         enum cache_type type,my_off_t seek_offset,
657
 
                         pbool use_async_io, myf cache_myflags);
 
657
                         bool use_async_io, myf cache_myflags);
658
658
extern bool reinit_io_cache(IO_CACHE *info,enum cache_type type,
659
 
                               my_off_t seek_offset,pbool use_async_io,
660
 
                               pbool clear_cache);
 
659
                               my_off_t seek_offset,bool use_async_io,
 
660
                               bool clear_cache);
661
661
extern void setup_io_cache(IO_CACHE* info);
662
662
extern int _my_b_read(IO_CACHE *info,uchar *Buffer,size_t Count);
663
663
extern int _my_b_read_r(IO_CACHE *info,uchar *Buffer,size_t Count);