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

Not declared in a Wine header. The function is either undocumented, or missing from Wine.

Implemented in "dlls/msvcrt/undname.c". https://source.winehq.org/source/dlls/msvcrt/undname.c

Debug channel "msvcrt".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Apr 2024.