diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2020-04-04 21:57:54 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2020-04-04 21:57:54 (GMT) |
commit | 286ba13e0a5e908f9ebe67286bb6006adb4102fc (patch) | |
tree | 06d1ef353ae623c579a8fff5a74d22ecc0b9b862 /plugins/elf | |
parent | c1cac2ce69f01deb99c5c91a803dfa04af90ef14 (diff) |
Simplified the plugin interface.
Diffstat (limited to 'plugins/elf')
-rw-r--r-- | plugins/elf/core.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/elf/core.c b/plugins/elf/core.c index 777c554..1e98aba 100644 --- a/plugins/elf/core.c +++ b/plugins/elf/core.c @@ -26,7 +26,7 @@ #include <config.h> #include <core/global.h> -#include <plugins/plugin-def.h> +#include <plugins/self.h> #include "format.h" @@ -43,7 +43,8 @@ -DEFINE_CHRYSALIDE_PLUGIN("GElfPlugin", "elf", "Add support for the ELF format", "0.1.0", +DEFINE_CHRYSALIDE_PLUGIN("Elf", "ELF format support", + PACKAGE_VERSION, CHRYSALIDE_WEBSITE("doc/formats"), PG_REQ, AL(PGA_PLUGIN_INIT, PGA_CONTENT_RESOLVER)); |