mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 11:10:04 +00:00
14 lines
321 B
C++
14 lines
321 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 |