]> git.saurik.com Git - apple/system_cmds.git/blob - kmodload.tproj/c++rem3.h
system_cmds-433.tar.gz
[apple/system_cmds.git] / kmodload.tproj / c++rem3.h
1 /*
2 * Copyright (c) 2002 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * "Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 1.0 (the 'License'). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
12 * this file.
13 *
14 * The Original Code and all software distributed under the License are
15 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
20 * under the License."
21 *
22 * @APPLE_LICENSE_HEADER_END@
23 */
24 /*
25 * History:
26 * 2002-02-26 gvdl Initial implementation of the gcc 2.95 -> gcc 3.x
27 * symbol remangler.
28 */
29
30 #include <sys/cdefs.h>
31
32 typedef enum Rem3Return {
33 kR3NotRemangled = 0, // Wasn't a 2.95 C++ symbol but otherwise OK
34 kR3Remangled, // Was sucessfully remangled from 2.95 -> 3.x
35 kR3InternalNotRemangled, // Symbol is too big to be parsed
36 kR3BufferTooSmallRemangled, // Is 2.95 symbol but insufficent output space
37 kR3BadArgument, // One of the pointers are NULL
38 } Rem3Return;
39
40 __BEGIN_DECLS
41
42 extern Rem3Return
43 rem3_remangle_name(char *gcc3, int *gcc3size, const char *gcc295);
44
45 __END_DECLS