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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * dgux.h
  4.  *
  5.  * Copyright (c) 1994, Regents of the University of California
  6.  *
  7.  * $Id: dgux.h,v 1.5 1999/02/13 23:17:19 momjian Exp $
  8.  *
  9.  *-------------------------------------------------------------------------
  10.  */
  11. #ifndef PORT_PROTOS_H
  12. #define PORT_PROTOS_H
  13. #include <dlfcn.h>
  14. #include "fmgr.h" /* for func_ptr */
  15. #include "utils/dynamic_loader.h"
  16. /*
  17.  * Dynamic Loader on DG/UX.
  18.  *
  19.  * this dynamic loader uses the system dynamic loading interface for shared
  20.  * libraries (ie. dlopen/dlsym/dlclose). The user must specify a shared
  21.  * library as the file to be dynamically loaded.
  22.  *
  23.  */
  24. #define pg_dlopen(f)  dlopen(f,1)
  25. #define pg_dlsym dlsym
  26. #define pg_dlclose dlclose
  27. #define pg_dlerror dlerror
  28. #endif  /* PORT_PROTOS_H */