ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/symbolmatrix.h
Revision: 1.2
Committed: Tue Aug 28 17:12:24 2007 UTC (16 years, 8 months ago) by pippijn
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Log Message:
removed old files

File Contents

# Content
1 /*
2 * symbolmatrix.h: Module to symbol mappings.
3 *
4 * Copyright © 2005-2007 Atheme Project (http://www.atheme.org)
5 */
6
7 #ifndef __ATHEME_SYMBOLMATRIX_H__
8 #define __ATHEME_SYMBOLMATRIX_H__
9
10 struct module_symbol_t
11 {
12 module_t *mod;
13 char *sym;
14 void *addr;
15 };
16
17 struct module_symbol_source_t
18 {
19 char *mod;
20 char *symn;
21 module_symbol_t sym;
22 };
23
24 void *module_symbol_get (module_t *mod, module_symbol_t *sym);
25 int module_symbol_getn (module_symbol_source_t *source_map, size_t n);
26
27 #endif