diff --git a/plugins/amxxpc b/plugins/amxxpc deleted file mode 100755 index 5f060f06..00000000 Binary files a/plugins/amxxpc and /dev/null differ diff --git a/plugins/amxxpc.exe b/plugins/amxxpc.exe deleted file mode 100755 index 760fe2d0..00000000 Binary files a/plugins/amxxpc.exe and /dev/null differ diff --git a/plugins/amxxpc32.dll b/plugins/amxxpc32.dll deleted file mode 100755 index 969e69d0..00000000 Binary files a/plugins/amxxpc32.dll and /dev/null differ diff --git a/plugins/amxxpc32.dylib b/plugins/amxxpc32.dylib deleted file mode 100644 index d8281c57..00000000 Binary files a/plugins/amxxpc32.dylib and /dev/null differ diff --git a/plugins/amxxpc32.so b/plugins/amxxpc32.so deleted file mode 100755 index c6aa6b74..00000000 Binary files a/plugins/amxxpc32.so and /dev/null differ diff --git a/plugins/amxxpc_osx b/plugins/amxxpc_osx deleted file mode 100755 index d0cd8f80..00000000 Binary files a/plugins/amxxpc_osx and /dev/null differ diff --git a/plugins/dlsym b/plugins/dlsym deleted file mode 100755 index da54533f..00000000 Binary files a/plugins/dlsym and /dev/null differ diff --git a/plugins/dlsym.c b/plugins/dlsym.c deleted file mode 100755 index b93280bb..00000000 --- a/plugins/dlsym.c +++ /dev/null @@ -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 -#include -#include -#include - -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 \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); -} -