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, 9 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

# User Rev Content
1 pippijn 1.1 /*
2 pippijn 1.3 * Copyright © 2005 William Pitcock <nenolod@nenolod.net>
3 pippijn 1.2 * Rights to this code are as documented in doc/pod/license.pod.
4 pippijn 1.1 *
5     * Dynamic linker.
6     *
7 pippijn 1.4 * $Id: linker.h,v 1.3 2007-08-28 17:08:06 pippijn Exp $
8 pippijn 1.1 */
9    
10     #ifndef LINKER_H
11     #define LINKER_H
12    
13 pippijn 1.3 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 pippijn 1.1 extern void linker_close (void *vptr);
17    
18     #endif