| 107 | static BOOLEAN hidapi_initialized = FALSE; |
| 108 | |
| 109 | static void free_library_handles() |
| 110 | { |
| 111 | if (hid_lib_handle) |
| 112 | FreeLibrary(hid_lib_handle); |
| 113 | hid_lib_handle = NULL; |
| 114 | if (cfgmgr32_lib_handle) |
| 115 | FreeLibrary(cfgmgr32_lib_handle); |
| 116 | cfgmgr32_lib_handle = NULL; |
| 117 | } |
| 118 | |
| 119 | static int lookup_functions() |
| 120 | { |
no outgoing calls
no test coverage detected