aboutsummaryrefslogtreecommitdiff
path: root/src/backend/port/dynloader/win32.h
blob: e08113a79cbee992e1f74e1af56d798a4347cf3d (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef PORT_PROTOS_H
#define PORT_PROTOS_H

#include "utils/dynamic_loader.h"

#define pg_dlopen(f)	dlopen((f), 1)
#define pg_dlsym		dlsym
#define pg_dlclose		dlclose
#define pg_dlerror		dlerror

#endif   /* PORT_PROTOS_H */