fileio.h
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.     Copyright (C) 2000  Marco Ziech
  3.     Copyright (C) 2000  Ross Combs (rocombs@cs.nmsu.edu)
  4.     This program is free software; you can redistribute it and/or modify
  5.     it under the terms of the GNU General Public License as published by
  6.     the Free Software Foundation; either version 2 of the License, or
  7.     (at your option) any later version.
  8.     This program 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
  11.     GNU General Public License for more details.
  12.     You should have received a copy of the GNU General Public License
  13.     along with this program; if not, write to the Free Software
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15. */
  16. #ifndef JUST_NEED_TYPES
  17. #ifndef INCLUDED_FILEIO_PROTOS
  18. #define INCLUDED_FILEIO_PROTOS
  19. #define JUST_NEED_TYPES
  20. #include <stdio.h>
  21. #include "compat/uint.h"
  22. #undef JUST_NEED_TYPES
  23. extern void file_rpush(FILE *f);
  24. extern void file_rpop(void);
  25. extern void file_wpush(FILE *f);
  26. extern void file_wpop(void);
  27. extern t_uint8 file_readb(void);
  28. extern t_uint16 file_readw_le(void);
  29. extern t_uint16 file_readw_be(void);
  30. extern t_uint32 file_readd_le(void);
  31. extern t_uint32 file_readd_be(void);
  32. extern int file_writeb(t_uint8 u);
  33. extern int file_writew_le(t_uint16 u);
  34. extern int file_writew_be(t_uint16 u);
  35. extern int file_writed_le(t_uint32 u);
  36. extern int file_writed_be(t_uint32 u);
  37. #endif
  38. #endif