| 14 | std::shared_ptr <WINAPI_API_TABLE> g_winapiApiTable; |
| 15 | |
| 16 | CDynamicWinapi::CDynamicWinapi() : |
| 17 | m_bHasInitialized(false) |
| 18 | { |
| 19 | m_ntHelper = std::make_shared<CNT>(); |
| 20 | if (!IS_VALID_SMART_PTR(m_ntHelper)) |
| 21 | { |
| 22 | DEBUG_LOG(LL_ERR, "m_ntHelper allocation fail! Error code: %u", LI_FIND(GetLastError)()); |
| 23 | return; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | CDynamicWinapi::~CDynamicWinapi() |
| 28 | { |
nothing calls this directly
no outgoing calls
no test coverage detected