hpux.h

来自「PostgreSQL7.4.6 for Linux」· C头文件 代码 · 共 26 行

H
26
字号
/*------------------------------------------------------------------------- * * dynloader.h *	  dynamic loader for HP-UX using the shared library mechanism * * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION *	  $Header: /cvsroot/pgsql/src/backend/port/dynloader/hpux.h,v 1.7.4.1 2004/01/04 04:06:45 tgl Exp $ * *	NOTES *		all functions are defined here -- it's impossible to trace the *		shl_* routines from the bundled HP-UX debugger. * *------------------------------------------------------------------------- *//* System includes */#include "fmgr.h"extern void *pg_dlopen(char *filename);extern PGFunction pg_dlsym(void *handle, char *funcname);extern void pg_dlclose(void *handle);extern char *pg_dlerror(void);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?