diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-29 10:39:46 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-29 10:39:46 +0000 |
commit | 72a7457a9021a088381ba9768908feeea928be58 (patch) | |
tree | fcc8bbfb743d5b6c91fae0f059750735819a3f13 /llvm/lib/System/Win32/DynamicLibrary.cpp | |
parent | 073173568d181279720142f281259e1f0c82da0f (diff) | |
download | bcm5719-llvm-72a7457a9021a088381ba9768908feeea928be58.tar.gz bcm5719-llvm-72a7457a9021a088381ba9768908feeea928be58.zip |
Implement the default constructor which causes the current program to be
opened as if it was a dynamic library so its symbols can be searched too.
llvm-svn: 18341
Diffstat (limited to 'llvm/lib/System/Win32/DynamicLibrary.cpp')
-rw-r--r-- | llvm/lib/System/Win32/DynamicLibrary.cpp | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/llvm/lib/System/Win32/DynamicLibrary.cpp b/llvm/lib/System/Win32/DynamicLibrary.cpp index b2add2ffe90..d743454746a 100644 --- a/llvm/lib/System/Win32/DynamicLibrary.cpp +++ b/llvm/lib/System/Win32/DynamicLibrary.cpp @@ -22,15 +22,21 @@ using namespace sys; //=== and must not be UNIX code //===----------------------------------------------------------------------===// +DynamicLibrary::DynamicLibrary() : handle(0) { + handle = new HMODULE; + *((HMODULE*)handle) = GetModuleHandle(NULL); + + if (*((HMODULE*)handle) == 0) { + ThrowError("Can't GetModuleHandle: "); + } +} + DynamicLibrary::DynamicLibrary(const char*filename) : handle(0) { handle = new HMODULE; *((HMODULE*)handle) = LoadLibrary(filename); if (*((HMODULE*)handle) == 0) { - char Buffer[100]; - // FIXME: This should use FormatMessage - sprintf(Buffer, "Windows error code %d\n", GetLastError()); - throw std::string(Buffer); + ThrowError("Can't LoadLibrary: "); } } |