blob: 430b41e7e6f76d3a881f8f21ead0e533193f11ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Convert DMD CodeView debug information to PDB files
// Copyright (c) 2009-2010 by Rainer Schuetze, All Rights Reserved
//
// License for redistribution is given by the Artistic License 2.0
// see file LICENSE for further details
#ifndef __DEMANGLE_H__
#define __DEMANGLE_H__
bool d_demangle(const char* name, char* demangled, int maxlen, bool plain);
#endif //__DEMANGLE_H__
|