45 lines
1.2 KiB
C
45 lines
1.2 KiB
C
// Filename: load_dso.h
|
|
// Created by: drose (12May00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef LOAD_DSO_H
|
|
#define LOAD_DSO_H
|
|
|
|
#include "dtoolbase.h"
|
|
#include "dSearchPath.h"
|
|
#include "filename.h"
|
|
|
|
// Loads in a dynamic library like an .so or .dll. Returns NULL if
|
|
// failure, otherwise on success. If the filename is not absolute,
|
|
// searches the path. If the path is empty, searches the dtool
|
|
// directory.
|
|
|
|
EXPCL_DTOOL void *
|
|
load_dso(const DSearchPath &path, const Filename &filename);
|
|
|
|
// true indicates success
|
|
EXPCL_DTOOL bool
|
|
unload_dso(void *dso_handle);
|
|
|
|
// Returns the error message from the last failed load_dso() call.
|
|
|
|
EXPCL_DTOOL string
|
|
load_dso_error();
|
|
|
|
// Returns a function pointer or other symbol from a loaded library.
|
|
EXPCL_DTOOL void *
|
|
get_dso_symbol(void *handle, const string &name);
|
|
|
|
#endif
|
|
|