Archived
1
0
This repository has been archived on 2024-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
plugin/plug/plug.h
2023-09-05 19:40:53 -06:00

11 lines
171 B
C

#ifndef PLUG_H_
#define BIND(lib, func, func_name) *(void **) (&func) = dlsym(lib, func_name)
typedef void (*plug_t)(void);
static plug_t plug;
#define PLUG_H_
#endif