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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * pg_listener.h
  4.  *   Asynchronous notification
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: pg_listener.h,v 1.6 1999/02/13 23:21:11 momjian Exp $
  10.  *
  11.  * NOTES
  12.  *   the genbki.sh script reads this file and generates .bki
  13.  *   information from the DATA() statements.
  14.  *
  15.  *-------------------------------------------------------------------------
  16.  */
  17. #ifndef PG_LISTENER_H
  18. #define PG_LISTENER_H
  19. /* ----------------
  20.  * postgres.h contains the system type definintions and the
  21.  * CATALOG(), BOOTSTRAP and DATA() sugar words so this file
  22.  * can be read by both genbki.sh and the C compiler.
  23.  * ----------------
  24.  */
  25. /* ----------------------------------------------------------------
  26.  * pg_listener definition.
  27.  *
  28.  * cpp turns this into typedef struct FormData_pg_listener
  29.  * ----------------------------------------------------------------
  30.  */
  31. CATALOG(pg_listener)
  32. {
  33. NameData relname;
  34. int4 listenerpid;
  35. int4 notification;
  36. } FormData_pg_listener;
  37. /* ----------------
  38.  * compiler constants for pg_listener
  39.  * ----------------
  40.  */
  41. #define Natts_pg_listener 3
  42. #define Anum_pg_listener_relname 1
  43. #define Anum_pg_listener_pid 2
  44. #define Anum_pg_listener_notify 3
  45. /* ----------------
  46.  * initial contents of pg_listener are NOTHING.
  47.  * ----------------
  48.  */
  49. #endif  /* PG_LISTENER_H */