From 573739f14409d3e2f3c42a3452712dbf30c70472 Mon Sep 17 00:00:00 2001 From: "Stephen D. Huston" Date: Tue, 21 Oct 2008 23:29:47 +0000 Subject: Remove nonportable include dlfcn; add Windows version of Shlib.cpp git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@706810 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/qpid/sys/Shlib.h | 1 - qpid/cpp/src/qpid/sys/windows/Shlib.cpp | 53 +++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 qpid/cpp/src/qpid/sys/windows/Shlib.cpp (limited to 'qpid/cpp/src') diff --git a/qpid/cpp/src/qpid/sys/Shlib.h b/qpid/cpp/src/qpid/sys/Shlib.h index e2752dc7d6..a6d94b42d4 100644 --- a/qpid/cpp/src/qpid/sys/Shlib.h +++ b/qpid/cpp/src/qpid/sys/Shlib.h @@ -24,7 +24,6 @@ #include #include -#include namespace qpid { namespace sys { diff --git a/qpid/cpp/src/qpid/sys/windows/Shlib.cpp b/qpid/cpp/src/qpid/sys/windows/Shlib.cpp new file mode 100644 index 0000000000..38027de93f --- /dev/null +++ b/qpid/cpp/src/qpid/sys/windows/Shlib.cpp @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * + */ + +#include "qpid/sys/Shlib.h" +#include "qpid/Exception.h" +#include "qpid/sys/windows/check.h" +#include + +namespace qpid { +namespace sys { + +void Shlib::load(const char* name) { + HMODULE h = LoadLibrary(name); + if (h == NULL) { + throw QPID_WINDOWS_ERROR(GetLastError()); + } + handle = static_cast(h); +} + +void Shlib::unload() { + if (handle) { + if (FreeLibrary(static_cast(handle)) == 0) { + throw QPID_WINDOWS_ERROR(GetLastError()); + } + handle = 0; + } +} + +void* Shlib::getSymbol(const char* name) { + void* sym = GetProcAddress(static_cast(handle), name); + if (sym == NULL) + throw QPID_WINDOWS_ERROR(GetLastError()); + return sym; +} + +}} // namespace qpid::sys -- cgit v1.2.1