Remove precompiled binaries from the plugins folder.
Former-commit-id: 4821df4aaf289b1f7d9fed0b2dfee40179d9e542
This commit is contained in:
parent
ad36859607
commit
fdc804b7df
BIN
plugins/amxxpc
BIN
plugins/amxxpc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
plugins/dlsym
BIN
plugins/dlsym
Binary file not shown.
@ -1,43 +0,0 @@
|
||||
/* by David "BAILOPAN" Anderson
|
||||
* No warranties of any kind
|
||||
* License: I hereby grant this work to the public domain and make no copyright claims.
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <dlfcn.h>
|
||||
#include <limits.h>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
char *file=NULL;
|
||||
void *dl= NULL;
|
||||
FILE *fp = NULL;
|
||||
char path[PATH_MAX];
|
||||
if (argc != 2)
|
||||
{
|
||||
printf("Usage: dlsym <file>\n");
|
||||
exit(0);
|
||||
}
|
||||
file = argv[1];
|
||||
realpath(file, path);
|
||||
fp = fopen(path, "rb");
|
||||
if (!fp)
|
||||
{
|
||||
printf("File not found.\n");
|
||||
exit(0);
|
||||
}
|
||||
|
||||
dl = dlopen(path, RTLD_NOW);
|
||||
|
||||
if (dl)
|
||||
{
|
||||
printf("Shared module loaded. Handle: %p\n", dl);
|
||||
dlclose(dl);
|
||||
dl = NULL;
|
||||
} else {
|
||||
printf("Shared module failed to load: %s\n", dlerror());
|
||||
}
|
||||
|
||||
exit(0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user