| 715 | } |
| 716 | |
| 717 | void PluginDetails::setName(char* nm) |
| 718 | { |
| 719 | #ifdef _WIN32 |
| 720 | strcpy_s(pluginName, MAX_PLUGIN_NAME_STR, nm); |
| 721 | #else |
| 722 | strcpy(pluginName, nm); |
| 723 | #endif |
| 724 | } |
| 725 | |
| 726 | void PluginDetails::setUUID(char* nm) |
| 727 | { |
no outgoing calls
no test coverage detected