blob: b764a9368002f44f41c38ddbf7d42f490b899e48 [file] [log] [blame]
James Kuszmaul82f6c042021-01-17 11:30:16 -08001/**
2 * @file mod_internal.h Internal interface to loadable module
3 *
4 * Copyright (C) 2010 Creytiv.com
5 */
6
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12
13void *_mod_open(const char *name);
14void *_mod_sym(void *h, const char *symbol);
15void _mod_close(void *h);
16
17
18#ifdef __cplusplus
19}
20#endif