Scroll to navigation

MSVCRT___RTCastToVoid(3w) Wine API MSVCRT___RTCastToVoid(3w)

NAME

MSVCRT___RTCastToVoid (MSVCRT.@)

SYNOPSIS

void* CDECL MSVCRT___RTCastToVoid
(
void* cppobj
)
 

DESCRIPTION

Dynamically cast a C++ object to a void*.
 

PARAMS

cppobj [In] The C++ object to cast.
 

RETURNS

Success: The base address of the object as a void*.
Failure: NULL, if cppobj is NULL or has no RTTI.
 

NOTES

This function is usually called by compiler generated code as a result of using one of the C++ dynamic cast statements.
 

IMPLEMENTATION

Not declared in a Wine header. The function is either undocumented, or missing from Wine.
Implemented in "dlls/msvcrt/cpp.c".
Debug channel "msvcrt".
Oct 2012 Wine API