Merge pull request #8 from biergaizi/upstream
[darwin-xtools.git] / cctools / include / mach-o / rld.h
blob9e2ef271d3f92aebc897e2969da0547fbae30637
1 /*
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
24 * This is the interface to the rld package as described in rld(3).
27 #ifndef _MACHO_RLD_H_
28 #define _MACHO_RLD_H_
30 #include <streams/streams.h>
31 #include <mach-o/loader.h>
33 extern long rld_load(
34 NXStream *stream,
35 struct mach_header **header_addr,
36 const char * const *object_filenames,
37 const char *output_filename);
39 extern long rld_load_from_memory(
40 NXStream *stream,
41 struct mach_header **header_addr,
42 const char *object_name,
43 char *object_addr,
44 long object_size,
45 const char *output_filename);
47 extern long rld_unload(
48 NXStream *stream);
50 extern long rld_lookup(
51 NXStream *stream,
52 const char *symbol_name,
53 unsigned long *value);
55 extern long rld_forget_symbol(
56 NXStream *stream,
57 const char *symbol_name);
59 extern long rld_unload_all(
60 NXStream *stream,
61 long deallocate_sets);
63 extern long rld_load_basefile(
64 NXStream *stream,
65 const char *base_filename);
67 extern void rld_address_func(
68 unsigned long (*func)(unsigned long size, unsigned long headers_size));
70 extern long rld_write_symfile(
71 NXStream *stream,
72 const char *output_filename);
73 #endif /* _MACHO_RLD_H_ */