MCPcopy Create free account
hub / github.com/bwapi/bwapi / GetData

Function GetData

bwapi/BWAPI_PluginInjector/chaoslauncher.cpp:25–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23}
24
25extern "C" __declspec(dllexport) void GetData(char* name, char* description, char* updateurl)
26{
27 std::stringstream ss_desc;
28 ss_desc << "Injects " << MODULE << " (" << BUILD_STR << ") into the Broodwar process.\r\n\r\n"
29 << "Version " << BWAPI_VER << " for Starcraft " << STARCRAFT_VER << ".\r\n"
30 << "Check for updates at " << BWAPI_HOME_URL << " \r\n\r\n"
31 << "Created by the BWAPI Project Team.";
32
33 strcpy(name, GetPluginName().substr(0, 64).c_str());
34 strcpy(description, ss_desc.str().substr(0, 512).c_str());
35 strcpy(updateurl, "");
36}
37
38// Functions called by BWLauncher
39//

Callers

nothing calls this directly

Calls 2

GetPluginNameFunction · 0.85
c_strMethod · 0.80

Tested by

no test coverage detected