]> git.saurik.com Git - apple/xnu.git/blame - libsa/c++rem3.h
xnu-792.25.20.tar.gz
[apple/xnu.git] / libsa / c++rem3.h
CommitLineData
9bccf70c
A
1/*
2 * Copyright (c) 2002 Apple Computer, Inc. All rights reserved.
3 *
6601e61a 4 * @APPLE_LICENSE_HEADER_START@
9bccf70c 5 *
6601e61a
A
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.
8f6c56a5
A
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,
6601e61a
A
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."
8f6c56a5 21 *
6601e61a 22 * @APPLE_LICENSE_HEADER_END@
9bccf70c
A
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
32typedef 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
42extern Rem3Return
43rem3_remangle_name(char *gcc3, int *gcc3size, const char *gcc295);
44
45__END_DECLS