ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/linker.h
Revision: 1.4
Committed: Thu Aug 30 19:56:19 2007 UTC (16 years, 8 months ago) by pippijn
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +1 -1 lines
State: FILE REMOVED
Log Message:
- put faultcodes into their own namespace
- removed old files
- limited header garbage in atheme.h
- macros to inline bools for connection_t::is_*
- put some connection_t functions into the connection_t class

File Contents

# Content
1 /*
2 * Copyright © 2005 William Pitcock <nenolod@nenolod.net>
3 * Rights to this code are as documented in doc/pod/license.pod.
4 *
5 * Dynamic linker.
6 *
7 * $Id: linker.h,v 1.3 2007-08-28 17:08:06 pippijn Exp $
8 */
9
10 #ifndef LINKER_H
11 #define LINKER_H
12
13 extern void *linker_open (char const * const path);
14 extern void *linker_open_ext (char const * const path);
15 extern void *linker_getsym (void *vptr, char const * const sym);
16 extern void linker_close (void *vptr);
17
18 #endif