diff options
author | Peter Zotov <whitequark@whitequark.org> | 2013-11-06 09:21:31 +0000 |
---|---|---|
committer | Peter Zotov <whitequark@whitequark.org> | 2013-11-06 09:21:31 +0000 |
commit | 34ddbf1a7e524950a0a28ecf268a011515ee39a2 (patch) | |
tree | bbe48ababa0f42f1cfce4cca75f14bf530bb5b71 /llvm/include/llvm-c | |
parent | 578267fb73e46b3a090140824ddf697f2a2ca853 (diff) | |
download | bcm5719-llvm-34ddbf1a7e524950a0a28ecf268a011515ee39a2.tar.gz bcm5719-llvm-34ddbf1a7e524950a0a28ecf268a011515ee39a2.zip |
[llvm-c] Expose LLVMLoadLibraryPermanently
Original patch by Chris Wailes
llvm-svn: 194139
Diffstat (limited to 'llvm/include/llvm-c')
-rw-r--r-- | llvm/include/llvm-c/Support.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/llvm/include/llvm-c/Support.h b/llvm/include/llvm-c/Support.h new file mode 100644 index 00000000000..72af4e4539c --- /dev/null +++ b/llvm/include/llvm-c/Support.h @@ -0,0 +1,36 @@ +/*===-- llvm-c/Support.h - Support C Interface --------------------*- C -*-===*\ +|* *| +|* The LLVM Compiler Infrastructure *| +|* *| +|* This file is distributed under the University of Illinois Open Source *| +|* License. See LICENSE.TXT for details. *| +|* *| +|*===----------------------------------------------------------------------===*| +|* *| +|* This file defines the C interface to the LLVM support library. *| +|* *| +\*===----------------------------------------------------------------------===*/ + +#ifndef LLVM_C_SUPPORT_H +#define LLVM_C_SUPPORT_H + +#include "llvm-c/Core.h" +#include "llvm/Support/DynamicLibrary.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This function permanently loads the dynamic library at the given path. + * It is safe to call this function multiple times for the same library. + * + * @see sys::DynamicLibrary::LoadLibraryPermanently() + */ +LLVMBool LLVMLoadLibraryPermanently(const char* Filename); + +#ifdef __cplusplus +} +#endif + +#endif
\ No newline at end of file |