mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 12:40:06 +00:00
1d829c862c
Automate with: git grep -l '#include <cm_' -- Source \ | xargs sed -i 's/#include <\(cm_.*\)>/#include "\1"/g' git grep -l '#include <cmsys/' -- Source \ | xargs sed -i 's/#include <\(cmsys\/.*\)>/#include "\1"/g' git grep -l '#include <cm[A-Z]' -- Source \ | xargs sed -i 's/#include <\(cm[A-Z].*\)>/#include "\1"/g'
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
// .NAME cmDynamicLoader - class interface to system dynamic libraries
|
|
// .SECTION Description
|
|
// cmDynamicLoader provides a portable interface to loading dynamic
|
|
// libraries into a process.
|
|
|
|
#ifndef cmDynamicLoader_h
|
|
#define cmDynamicLoader_h
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include "cmsys/DynamicLoader.hxx" // IWYU pragma: export
|
|
|
|
class cmDynamicLoader
|
|
{
|
|
public:
|
|
// Description:
|
|
// Load a dynamic library into the current process.
|
|
// The returned cmsys::DynamicLoader::LibraryHandle can be used to access
|
|
// the symbols in the library.
|
|
static cmsys::DynamicLoader::LibraryHandle OpenLibrary(const char*);
|
|
|
|
// Description:
|
|
// Flush the cache of dynamic loader.
|
|
static void FlushCache();
|
|
|
|
protected:
|
|
cmDynamicLoader() {}
|
|
~cmDynamicLoader() {}
|
|
|
|
private:
|
|
cmDynamicLoader(const cmDynamicLoader&); // Not implemented.
|
|
void operator=(const cmDynamicLoader&); // Not implemented.
|
|
};
|
|
|
|
#endif
|