This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/blenlib/BLI_dynlib.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
496 B
C++
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright 2001-2002 NaN Holding BV. All rights reserved. */
2011-02-27 20:37:56 +00:00
/** \file
* \ingroup bli
2011-02-27 20:37:56 +00:00
*/
#pragma once
2002-10-12 11:37:38 +00:00
#ifdef __cplusplus
extern "C" {
#endif
typedef struct DynamicLibrary DynamicLibrary;
2002-10-12 11:37:38 +00:00
DynamicLibrary *BLI_dynlib_open(const char *name);
void *BLI_dynlib_find_symbol(DynamicLibrary *lib, const char *symname);
char *BLI_dynlib_get_error_as_string(DynamicLibrary *lib);
void BLI_dynlib_close(DynamicLibrary *lib);
2002-10-12 11:37:38 +00:00
#ifdef __cplusplus
}
#endif