blob: 0a63c601780bea9ff5b5494121746ed6a3718f53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Convert DMD CodeView debug information to PDB files
// Copyright (c) 2009 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__
|