38#include "blocxx/BLOCXX_config.h"
39#if defined(BLOCXX_USE_SHL)
46shlSharedLibrary::~shlSharedLibrary()
48 ::shl_unload( m_libhandle );
50bool shlSharedLibrary::doGetFunctionPointer(
const String& functionName,
54 int status = ::shl_findsym( &m_libhandle, functionName.c_str(), TYPE_PROCEDURE, &symaddr );
55 if (status == -1 || symaddr == NULL)
This String class is an abstract data type that represents as NULL terminated string of characters.