home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / include / my_nosys.h < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  57 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17.  
  18. /*
  19.   Header to remove use of my_functions in functions where we need speed and
  20.   where calls to posix functions should work
  21. */
  22. #ifndef _my_nosys_h
  23. #define _my_nosys_h
  24. #ifdef    __cplusplus
  25. extern "C" {
  26. #endif
  27.  
  28. #ifndef __MY_NOSYS__
  29. #define __MY_NOSYS__
  30.  
  31. #ifdef MSDOS
  32. #include <io.h>            /* Get prototypes for read()... */
  33. #endif
  34. #ifndef HAVE_STDLIB_H
  35. #include <malloc.h>
  36. #endif
  37.  
  38. #undef my_read            /* Can be predefined in raid.h */
  39. #undef my_write
  40. #undef my_seek
  41. #define my_read(a,b,c,d) my_quick_read(a,b,c,d)
  42. #define my_write(a,b,c,d) my_quick_write(a,b,c)
  43. extern uint my_quick_read(File Filedes,byte *Buffer,uint Count,myf myFlags);
  44. extern uint my_quick_write(File Filedes,const byte *Buffer,uint Count);
  45.  
  46. #if !defined(SAFEMALLOC) && defined(USE_HALLOC)
  47. #define my_malloc(a,b) halloc(a,1)
  48. #define my_no_flags_free(a) hfree(a)
  49. #endif
  50.  
  51. #endif /* __MY_NOSYS__ */
  52.  
  53. #ifdef    __cplusplus
  54. }
  55. #endif
  56. #endif
  57.