hpux.h
来自「关系型数据库 Postgresql 6.5.2」· C头文件 代码 · 共 23 行
H
23 行
/*------------------------------------------------------------------------- * * dynloader.h * dynamic loader for HP-UX using the shared library mechanism * * Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION * $Header: /usr/local/cvsroot/pgsql/src/backend/port/dynloader/hpux.h,v 1.2 1999/02/13 23:17:21 momjian Exp $ * * NOTES * all functions are defined here -- it's impossible to trace the * shl_* routines from the bundled HP-UX debugger. * *------------------------------------------------------------------------- *//* System includes */void *pg_dlopen(char *filename);func_ptr pg_dlsym(void *handle, char *funcname);void pg_dlclose(void *handle);char *pg_dlerror();
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?