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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * win.h
  4.  *   port-specific prototypes for Intel x86/Window NT
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * win.h,v 1.2 1995/03/17 06:40:18 andrew Exp
  10.  *
  11.  *-------------------------------------------------------------------------
  12.   */
  13. #ifndef PORT_PROTOS_H
  14. #define PORT_PROTOS_H
  15. #include <dlfcn.h>
  16. #include "fmgr.h" /* for func_ptr */
  17. #include "utils/dynamic_loader.h"
  18.  /* dynloader.c */
  19. /*
  20.  * Dynamic Loader on Intel x86/Windows NT
  21.  *
  22.  * this dynamic loader uses the system dynamic loading interface for shared
  23.  * libraries (ie. dlopen/dlsym/dlclose). The user must specify a shared
  24.  * library as the file to be dynamically loaded.
  25.  *
  26.   */
  27. #define pg_dlopen(f) dlopen(f,1)
  28. #define pg_dlsym dlsym
  29. #define pg_dlclose dlclose
  30. #define pg_dlerror dlerror
  31. #endif  /* PORT_PROTOS_H */