| 31 | // WINDOWS PART |
| 32 | #ifdef _WIN32 |
| 33 | bool load_library () |
| 34 | { |
| 35 | if (this->lib_instance == NULL) |
| 36 | { |
| 37 | this->lib_instance = LoadLibrary (this->dll_path); |
| 38 | if (this->lib_instance == NULL) |
| 39 | { |
| 40 | return false; |
| 41 | } |
| 42 | } |
| 43 | return true; |
| 44 | } |
| 45 | |
| 46 | void *get_address (const char *function_name) |
| 47 | { |
no outgoing calls
no test coverage detected