mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 20:09:54 +00:00
13 lines
320 B
C
13 lines
320 B
C
|
#ifndef SUNSHINE_PLATFORM_MISC_H
|
||
|
#define SUNSHINE_PLATFORM_MISC_H
|
||
|
|
||
|
#include <vector>
|
||
|
namespace dyn {
|
||
|
typedef void (*apiproc)(void);
|
||
|
|
||
|
int load(void *handle, const std::vector<std::tuple<apiproc *, const char *>> &funcs, bool strict = true);
|
||
|
void *handle(const std::vector<const char *> &libs);
|
||
|
|
||
|
} // namespace dyn
|
||
|
|
||
|
#endif
|