mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-15 07:14:46 +02:00
trunk: backport eventing from 1.4.3
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// SharedLibrary_UNIX.h
|
||||
//
|
||||
// $Id: //poco/svn/Foundation/include/Poco/SharedLibrary_UNIX.h#2 $
|
||||
// $Id: //poco/1.4/Foundation/include/Poco/SharedLibrary_UNIX.h#2 $
|
||||
//
|
||||
// Library: Foundation
|
||||
// Package: SharedLibrary
|
||||
@@ -50,18 +50,18 @@ namespace Poco {
|
||||
class Foundation_API SharedLibraryImpl
|
||||
{
|
||||
protected:
|
||||
enum Flags
|
||||
{
|
||||
SHLIB_GLOBAL_IMPL = 1,
|
||||
SHLIB_LOCAL_IMPL = 2
|
||||
};
|
||||
enum Flags
|
||||
{
|
||||
SHLIB_GLOBAL_IMPL = 1,
|
||||
SHLIB_LOCAL_IMPL = 2
|
||||
};
|
||||
|
||||
SharedLibraryImpl();
|
||||
~SharedLibraryImpl();
|
||||
void loadImpl(const std::string& path, int flags);
|
||||
void unloadImpl();
|
||||
bool isLoadedImpl() const;
|
||||
void* findSymbolImpl(const std::string& name);
|
||||
SharedLibraryImpl();
|
||||
~SharedLibraryImpl();
|
||||
void loadImpl(const std::string& path, int flags);
|
||||
void unloadImpl();
|
||||
bool isLoadedImpl() const;
|
||||
void* findSymbolImpl(const std::string& name);
|
||||
const std::string& getPathImpl() const;
|
||||
static std::string suffixImpl();
|
||||
|
||||
|
Reference in New Issue
Block a user