MSVCRT___RTtypeid(3w)
NAME
MSVCRT___RTtypeid (MSVCRT.@)
SYNOPSIS
const type_info* CDECL MSVCRT___RTtypeid
(
void* cppobj
)
DESCRIPTION
Retrieve the Run Time Type Information (RTTI) for a C++ object.
PARAMS
cppobj [In] C++ object to get type information for.
RETURNS
Success: A type_info object describing cppobj.
Failure: If the object to be cast has no RTTI, a __non_rtti_object
exception is thrown. If cppobj is NULL, a bad_typeid exception is
thrown. In either case, this function does not return.
NOTES
This function is usually called by compiler generated code as a result
of using one of the C++ dynamic cast statements.
IMPLEMENTATION
Not defined in a Wine header. The function is either undocumented, or
missing from Wine.
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/msvcrt/cpp.c".
- Debug channel "msvcrt".