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