blob: 7290d2959509279700303331a36005a35a9deb38 [file] [log] [blame]
[email protected]3b63f8f42011-03-28 01:54:151// Copyright (c) 2011 The Chromium Authors. All rights reserved.
[email protected]709a847e2010-11-10 01:16:112// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]e0785902011-05-19 23:34:175#include "base/scoped_native_library.h"
[email protected]709a847e2010-11-10 01:16:116
7namespace base {
8
9ScopedNativeLibrary::ScopedNativeLibrary() : library_(NULL) {
10}
11
12ScopedNativeLibrary::ScopedNativeLibrary(NativeLibrary library)
13 : library_(library) {
14}
15
16ScopedNativeLibrary::ScopedNativeLibrary(const FilePath& library_path) {
[email protected]84479322011-04-18 22:06:2217 library_ = base::LoadNativeLibrary(library_path, NULL);
[email protected]709a847e2010-11-10 01:16:1118}
19
20ScopedNativeLibrary::~ScopedNativeLibrary() {
21 if (library_)
22 base::UnloadNativeLibrary(library_);
23}
24
25void* ScopedNativeLibrary::GetFunctionPointer(
26 const char* function_name) const {
27 if (!library_)
28 return NULL;
29 return base::GetFunctionPointerFromNativeLibrary(library_, function_name);
30}
31
32void ScopedNativeLibrary::Reset(NativeLibrary library) {
33 if (library_)
34 base::UnloadNativeLibrary(library_);
35 library_ = library;
36}
37
38NativeLibrary ScopedNativeLibrary::Release() {
39 NativeLibrary result = library_;
40 library_ = NULL;
41 return result;
42}
43
44} // namespace base