MCPcopy Create free account
hub / github.com/brainflow-dev/brainflow / load_library

Method load_library

src/utils/inc/runtime_dll_loader.h:33–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers 9

prepare_sessionMethod · 0.80
init_dll_loaderMethod · 0.80
prepare_sessionMethod · 0.80
prepare_sessionMethod · 0.80
prepare_sessionMethod · 0.80
prepare_sessionMethod · 0.80
prepare_sessionMethod · 0.80
prepareMethod · 0.80
prepareMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected