forked from blytkerchan/cppunit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBeOsDynamicLibraryManager.cpp
More file actions
49 lines (33 loc) · 967 Bytes
/
BeOsDynamicLibraryManager.cpp
File metadata and controls
49 lines (33 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include <cppunit/Portability.h>
#if defined(CPPUNIT_HAVE_BEOS_DLL_LOADER)
#include <cppunit/plugin/DynamicLibraryManager.h>
#include <kernel/image.h>
CPPUNIT_NS_BEGIN
DynamicLibraryManager::LibraryHandle
DynamicLibraryManager::doLoadLibrary( const std::string &libraryName )
{
return (LibraryHandle)::load_add_on( libraryName.c_str() );
}
void
DynamicLibraryManager::doReleaseLibrary()
{
::unload_add_on( (image_id)m_libraryHandle );
}
DynamicLibraryManager::Symbol
DynamicLibraryManager::doFindSymbol( const std::string &symbol )
{
void *symbolPointer;
if ( ::get_image_symbol( (image_id)m_libraryHandle,
symbol.c_str(),
B_SYMBOL_TYPE_TEXT,
&symbolPointer ) == B_OK )
return symnolPointer;
return NULL;
}
std::string
DynamicLibraryManager::getLastErrorDetail() const
{
return "";
}
CPPUNIT_NS_END
#endif // defined(CPPUNIT_HAVE_BEOS_DLL_LOADER)