1/*
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
3 *
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.
12 *
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.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23/*
24 * This is the interface to the rld package as described in rld(3).
25 */
26
27#ifndef _MACHO_RLD_H_
28#define _MACHO_RLD_H_
29
30#include <streams/streams.h>
31#include <mach-o/loader.h>
32
33extern long rld_load(
34    NXStream *stream,
35    struct mach_header **header_addr,
36    const char * const *object_filenames,
37    const char *output_filename);
38
39extern 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);
46
47extern long rld_unload(
48    NXStream *stream);
49
50extern long rld_lookup(
51    NXStream *stream,
52    const char *symbol_name,
53    unsigned long *value);
54
55extern long rld_forget_symbol(
56    NXStream *stream,
57    const char *symbol_name);
58
59extern long rld_unload_all(
60    NXStream *stream,
61    long deallocate_sets);
62
63extern long rld_load_basefile(
64    NXStream *stream,
65    const char *base_filename);
66
67extern void rld_address_func(
68    unsigned long (*func)(unsigned long size, unsigned long headers_size));
69
70extern long rld_write_symfile(
71    NXStream *stream,
72    const char *output_filename);
73#endif /* _MACHO_RLD_H_ */
74