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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * port_protos.h
  4.  *   port-specific prototypes for NeXT
  5.  *
  6. -------------------------------------------------------------------------
  7.  */
  8. #ifndef PORT_PROTOS_H
  9. #define PORT_PROTOS_H
  10. #include "fmgr.h" /* for func_ptr */
  11. #include "utils/dynamic_loader.h"
  12. void    *next_dlopen(char *name);
  13. int next_dlclose(void *handle);
  14. void    *next_dlsym(void *handle, char *symbol);
  15. char    *next_dlerror(void);
  16. #define pg_dlopen(f) next_dlopen
  17. #define pg_dlsym next_dlsym
  18. #define pg_dlclose next_dlclose
  19. #define pg_dlerror next_dlerror
  20. /* port.c */
  21. #endif  /* PORT_PROTOS_H */