my_nosys.h
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 2k
Category:

MySQL

Development Platform:

Visual C++

  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.   Header to remove use of my_functions in functions where we need speed and
  19.   where calls to posix functions should work
  20. */
  21. #ifndef _my_nosys_h
  22. #define _my_nosys_h
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. #ifndef __MY_NOSYS__
  27. #define __MY_NOSYS__
  28. #ifdef MSDOS
  29. #include <io.h> /* Get prototypes for read()... */
  30. #endif
  31. #ifndef HAVE_STDLIB_H
  32. #include <malloc.h>
  33. #endif
  34. #undef my_read /* Can be predefined in raid.h */
  35. #undef my_write
  36. #undef my_seek
  37. #define my_read(a,b,c,d) my_quick_read(a,b,c,d)
  38. #define my_write(a,b,c,d) my_quick_write(a,b,c)
  39. extern uint my_quick_read(File Filedes,byte *Buffer,uint Count,myf myFlags);
  40. extern uint my_quick_write(File Filedes,const byte *Buffer,uint Count);
  41. #if !defined(SAFEMALLOC) && defined(USE_HALLOC)
  42. #define my_malloc(a,b) halloc(a,1)
  43. #define my_no_flags_free(a) hfree(a)
  44. #endif
  45. #endif /* __MY_NOSYS__ */
  46. #ifdef __cplusplus
  47. }
  48. #endif
  49. #endif