762dd8c619
9.0 includes more major features than any release before it, including: * Hot standby * Streaming replication * In-place upgrades * 64-bit Windows builds * Easy mass permissions management * Anonymous blocks and named parameter calls for stored procedures * New windowing functions and ordered aggregates ... and many more. For details on the over 200 additions and improvements in this version, developed by over a hundred contributors, please see the release notes.
17 lines
427 B
C
17 lines
427 B
C
/* $NetBSD: dynloader-ltdl.h,v 1.1.1.1 2010/09/21 07:50:46 adam Exp $ */
|
|
|
|
/*
|
|
* dynamic loader based on libltdl
|
|
*/
|
|
#ifndef PORT_PROTOS_H
|
|
#define PORT_PROTOS_H
|
|
|
|
#include <ltdl.h>
|
|
#include "utils/dynamic_loader.h"
|
|
|
|
#define pg_dlopen(a) ((void *)lt_dlopen(a))
|
|
#define pg_dlsym(a,b) lt_dlsym((lt_dlhandle)(a), (b))
|
|
#define pg_dlclose(a) lt_dlclose((lt_dlhandle)(a))
|
|
#define pg_dlerror lt_dlerror
|
|
|
|
#endif /* PORT_PROTOS_H */
|