a bunch of bullshit
All checks were successful
Inkay-CI / build-inkay (push) Successful in 41s

This commit is contained in:
kittentm 2026-08-08 19:14:24 +02:00
commit 56a115ca79
Signed by: kitten
GPG key ID: 394B4EABE4405A83
2 changed files with 39 additions and 2 deletions

View file

@ -32,7 +32,26 @@
Mandatory plugin information. Mandatory plugin information.
If not set correctly, the loader will refuse to use the plugin. 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_DESCRIPTION("SPFN Network Patcher");
WUPS_PLUGIN_VERSION(INKAY_VERSION); WUPS_PLUGIN_VERSION(INKAY_VERSION);
WUPS_PLUGIN_AUTHOR("redbinder0526, kittentm and Pretendo contributors"); WUPS_PLUGIN_AUTHOR("redbinder0526, kittentm and Pretendo contributors");

View file

@ -45,7 +45,25 @@
Mandatory plugin information. Mandatory plugin information.
If not set correctly, the loader will refuse to use the plugin. If not set correctly, the loader will refuse to use the plugin.
**/ **/
WUMS_MODULE_EXPORT_NAME("inkay"); WUMS_META(export_name, "inkay");
WUMS_META(wums, WUMS_VERSION);
WUMS_USE_WUT_MALLOC();
WUMS_USE_WUT_SOCKETS();
WUMS_USE_WUT_NEWLIB();
WUMS___INIT_WRAPPER();
WUMS___FINI_WRAPPER();
WUMS_META(buildtimestamp, __DATE__ " " __TIME__);
extern const char wums_meta_module_name[] WUMS_SECTION("meta");
const char wums_meta_module_name[] = "inkay";
extern const char wums_meta_info_dump[] WUMS_SECTION("meta");
const char wums_meta_info_dump[] = "(module: inkay;" \
"wums " WUMS_VERSION ";" \
"buildtime: " __DATE__ " " __TIME__ ")";
extern const char wums_meta_info_linking_order[] WUMS_SECTION("meta");
const char wums_meta_info_linking_order[] = "Loading module \"inkay\" failed.\n" \
"Function \"wut_get_thread_specific\" returned unexpected value.\n" \
"Please check linking order (expected \"-lwums -lwut\")";
WUMS_MODULE_DESCRIPTION("SPFN Network Patcher"); WUMS_MODULE_DESCRIPTION("SPFN Network Patcher");
WUMS_MODULE_VERSION(INKAY_VERSION); WUMS_MODULE_VERSION(INKAY_VERSION);
WUMS_MODULE_AUTHOR("Pretendo contributors and RusticMaple"); WUMS_MODULE_AUTHOR("Pretendo contributors and RusticMaple");