MCPcopy Create free account
hub / github.com/BatchDrake/SigDigger / dlclose

Function dlclose

Suscan/Plugin.cpp:75–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73}
74
75static int
76dlclose(void *handle)
77{
78 int ret = 0;
79
80 if (!FreeLibrary(SCAST(HINSTANCE, handle))) {
81 dl_set_last_error("FreeLibrary: %s", GetLastError());
82 ret = -1;
83 }
84
85 return ret;
86}
87
88static void *
89dlsym(void *handle, const char *name)

Callers 2

makeMethod · 0.85
~PluginMethod · 0.85

Calls 1

dl_set_last_errorFunction · 0.85

Tested by

no test coverage detected