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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * pqformat.h
  4.  * Definitions for formatting and parsing frontend/backend messages
  5.  *
  6.  * Copyright (c) 1994, Regents of the University of California
  7.  *
  8.  * $Id: pqformat.h,v 1.4 1999/05/25 16:14:01 momjian Exp $
  9.  *
  10.  *-------------------------------------------------------------------------
  11.  */
  12. #ifndef PQFORMAT_H
  13. #define PQFORMAT_H
  14. #include "postgres.h"
  15. #include "lib/stringinfo.h"
  16. #define pq_beginmessage(buf)  initStringInfo(buf)
  17. extern void pq_sendbyte(StringInfo buf, int byt);
  18. extern void pq_sendbytes(StringInfo buf, const char *data, int datalen);
  19. extern void pq_sendcountedtext(StringInfo buf, const char *str, int slen);
  20. extern void pq_sendstring(StringInfo buf, const char *str);
  21. extern void pq_sendint(StringInfo buf, int i, int b);
  22. extern void pq_endmessage(StringInfo buf);
  23. extern int pq_puttextmessage(char msgtype, const char *str);
  24. extern int pq_getint(int *result, int b);
  25. extern int pq_getstr(char *s, int maxlen);
  26. #endif  /* PQFORMAT_H */