1 | /*
|
---|
2 | *
|
---|
3 | * Copyright 1997,1998 by Metro Link, Inc.
|
---|
4 | *
|
---|
5 | * Permission to use, copy, modify, distribute, and sell this software and its
|
---|
6 | * documentation for any purpose is hereby granted without fee, provided that
|
---|
7 | * the above copyright notice appear in all copies and that both that
|
---|
8 | * copyright notice and this permission notice appear in supporting
|
---|
9 | * documentation, and that the name of Metro Link, Inc. not be used in
|
---|
10 | * advertising or publicity pertaining to distribution of the software without
|
---|
11 | * specific, written prior permission. Metro Link, Inc. makes no
|
---|
12 | * representations about the suitability of this software for any purpose.
|
---|
13 | * It is provided "as is" without express or implied warranty.
|
---|
14 | *
|
---|
15 | * METRO LINK, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
---|
16 | * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
---|
17 | * EVENT SHALL METRO LINK, INC. BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
---|
18 | * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
---|
19 | * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
---|
20 | * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
---|
21 | * PERFORMANCE OF THIS SOFTWARE.
|
---|
22 | */
|
---|
23 |
|
---|
24 | /* $XFree86: xc/programs/Xserver/hw/xfree86/loader/elfloader.h,v 1.3 1998/09/20 14:41:05 dawes Exp $ */
|
---|
25 |
|
---|
26 | #ifdef HAVE_XORG_CONFIG_H
|
---|
27 | #include <xorg-config.h>
|
---|
28 | #endif
|
---|
29 |
|
---|
30 | #ifndef _ELFLOADER_H
|
---|
31 | #define _ELFLOADER_H
|
---|
32 | /* elfloader.c */
|
---|
33 | extern void *ELFLoadModule(loaderPtr, int, LOOKUP **);
|
---|
34 | extern void ELFResolveSymbols(void *);
|
---|
35 | extern int ELFCheckForUnresolved(void *);
|
---|
36 | extern char *ELFAddressToSection(void *, unsigned long);
|
---|
37 | extern void ELFUnloadModule(void *);
|
---|
38 | #endif /* _ELFLOADER_h */
|
---|