table of contents
other versions
- wheezy 1.4.1-4
__unDNameEx(3w) | Wine API | __unDNameEx(3w) |
NAME¶
__unDNameEx (MSVCRT.@)SYNOPSIS¶
char* CDECL __unDNameEx(
char* buffer,
const char* mangled,
int buflen,
malloc_func_t memget,
free_func_t memfree,
void* unknown,
unsigned short int flags
)
DESCRIPTION¶
Demangle a C++ identifier.PARAMS¶
buffer [Out] If not NULL, the place to put the demangled string. mangled [In] Mangled name of the function. buflen [In] Length of buffer. memget [In] Function to allocate memory with. memfree [In] Function to free memory with. unknown [?] Unknown, possibly a call back flags [In] Flags determining demangled format.RETURNS¶
Success: A string pointing to the unmangled name, allocated with memget. Failure: NULL.IMPLEMENTATION¶
Declared in "msvcrt.h". Implemented in "dlls/msvcrt/undname.c". Debug channel "msvcrt".Oct 2012 | Wine API |