forked from PretendoNetwork/Inkay
This commit is contained in:
parent
cc7d9e8d84
commit
56a115ca79
2 changed files with 39 additions and 2 deletions
|
|
@ -32,7 +32,26 @@
|
|||
Mandatory plugin information.
|
||||
If not set correctly, the loader will refuse to use the plugin.
|
||||
**/
|
||||
WUPS_PLUGIN_NAME("Malamar (SPFN)");
|
||||
WUPS_META(name, "Malamar (SPFN)");
|
||||
WUPS_META(wups, WUPS_VERSION_STR);
|
||||
WUPS_USE_WUT_MALLOC();
|
||||
WUPS_USE_WUT_SOCKETS();
|
||||
WUPS_USE_WUT_NEWLIB();
|
||||
WUPS___INIT_WRAPPER();
|
||||
WUPS___FINI_WRAPPER();
|
||||
WUPS_INIT_CONFIG_FUNCTIONS();
|
||||
WUPS_META(buildtimestamp, __DATE__ " " __TIME__);
|
||||
extern const char wups_meta_plugin_name[] WUPS_SECTION("meta");
|
||||
const char wups_meta_plugin_name[] = "Malamar (SPFN)";
|
||||
extern const char wups_meta_info_dump[] WUPS_SECTION("meta");
|
||||
const char wups_meta_info_dump[] = "(plugin: Malamar (SPFN);" \
|
||||
"wups " WUPS_VERSION_STR ";" \
|
||||
"buildtime: " __DATE__ " " __TIME__ ")";
|
||||
extern const char wups_meta_info_linking_order[] WUPS_SECTION("meta");
|
||||
const char wups_meta_info_linking_order[] = "Loading \"Malamar (SPFN)\" failed.\n" \
|
||||
"Function \"wut_get_thread_specific\" returned unexpected value.\n" \
|
||||
"Please check linking order (expected \"-lwups -lwut\")";
|
||||
|
||||
WUPS_PLUGIN_DESCRIPTION("SPFN Network Patcher");
|
||||
WUPS_PLUGIN_VERSION(INKAY_VERSION);
|
||||
WUPS_PLUGIN_AUTHOR("redbinder0526, kittentm and Pretendo contributors");
|
||||
|
|
|
|||
Loading…
Reference in a new issue