be-fsstubs.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * be-fsstubs.h
  4.  *
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: be-fsstubs.h,v 1.9 1999/05/31 22:53:58 tgl Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef BE_FSSTUBS_H
  14. #define BE_FSSTUBS_H
  15. /* Redefine names LOread() and LOwrite() to be lowercase to allow calling
  16.  * using the new v6.1 case-insensitive SQL parser. Define macros to allow
  17.  * the existing code to stay the same. - tgl 97/05/03
  18.  */
  19. #define LOread(f,l) loread(f,l)
  20. #define LOwrite(f,b) lowrite(f,b)
  21. extern Oid lo_import(text *filename);
  22. extern int4 lo_export(Oid lobjId, text *filename);
  23. extern Oid lo_creat(int mode);
  24. extern int lo_open(Oid lobjId, int mode);
  25. extern int lo_close(int fd);
  26. extern int lo_read(int fd, char *buf, int len);
  27. extern int lo_write(int fd, char *buf, int len);
  28. extern int lo_lseek(int fd, int offset, int whence);
  29. extern int lo_tell(int fd);
  30. extern int lo_unlink(Oid lobjId);
  31. extern struct varlena *loread(int fd, int len);
  32. extern int lowrite(int fd, struct varlena * wbuf);
  33. /*
  34.  * Added for buffer leak prevention [ Pascal Andr