aboutsummaryrefslogtreecommitdiff
path: root/src/library_loader.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-07-17 19:04:09 +0200
committerdec05eba <dec05eba@protonmail.com>2024-07-17 19:04:09 +0200
commit91d725840e2d518bd11dbd446ac133b095f03148 (patch)
tree89563160ec8f1e402df99eb1bec31c400090e2a4 /src/library_loader.h
parent078b8dd97c201ba4df77f6bae0002639764e52a6 (diff)
Remove code duplicated from gpu-screen-recorder (opengl, display server, drm and monitors) and get that information from gpu-screen-recorder instead
Diffstat (limited to 'src/library_loader.h')
-rw-r--r--src/library_loader.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/library_loader.h b/src/library_loader.h
deleted file mode 100644
index 47bc9f0..0000000
--- a/src/library_loader.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef GSR_LIBRARY_LOADER_H
-#define GSR_LIBRARY_LOADER_H
-
-#include <stdbool.h>
-
-typedef struct {
- void **func;
- const char *name;
-} dlsym_assign;
-
-void* dlsym_print_fail(void *handle, const char *name, bool required);
-/* |dlsyms| should be null terminated */
-bool dlsym_load_list(void *handle, const dlsym_assign *dlsyms);
-/* |dlsyms| should be null terminated */
-void dlsym_load_list_optional(void *handle, const dlsym_assign *dlsyms);
-
-#endif /* GSR_LIBRARY_LOADER_H */