| 47 | IdentityType_t g_ExtType; |
| 48 | |
| 49 | void CExtension::Initialize(const char *filename, const char *path, bool bRequired) |
| 50 | { |
| 51 | m_bRequired = bRequired; |
| 52 | m_pAPI = NULL; |
| 53 | m_pIdentToken = NULL; |
| 54 | unload_code = 0; |
| 55 | m_bFullyLoaded = false; |
| 56 | m_File.assign(filename); |
| 57 | m_Path.assign(path); |
| 58 | char real_name[PLATFORM_MAX_PATH]; |
| 59 | libsys->GetFileFromPath(real_name, sizeof(real_name), m_Path.c_str()); |
| 60 | m_RealFile.assign(real_name); |
| 61 | } |
| 62 | |
| 63 | CRemoteExtension::CRemoteExtension(IExtensionInterface *pAPI, const char *filename, const char *path) |
| 64 | { |
nothing calls this directly
no test coverage detected