| 443 | } |
| 444 | |
| 445 | bool CExtension::IsRunning(char *error, size_t maxlength) |
| 446 | { |
| 447 | if (!IsLoaded()) |
| 448 | { |
| 449 | if (error) |
| 450 | { |
| 451 | ke::SafeStrcpy(error, maxlength, m_Error.c_str()); |
| 452 | } |
| 453 | return false; |
| 454 | } |
| 455 | |
| 456 | return m_pAPI->QueryRunning(error, maxlength); |
| 457 | } |
| 458 | |
| 459 | void CExtension::AddLibrary(const char *library) |
| 460 | { |
no test coverage detected