Changeset 10005 for trunk/src/msvcrt/cpp.c
- Timestamp:
- Apr 10, 2003, 12:28:07 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/msvcrt/cpp.c
r9633 r10005 22 22 #include "msvcrt/eh.h" 23 23 #include "msvcrt/stdlib.h" 24 24 #include <string.h> 25 25 #include "wine/debug.h" 26 26 27 27 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt); 28 29 28 30 29 typedef void (*v_table_ptr)(); … … 100 99 void MSVCRT_exception_ctor(exception * _this, const char ** name) 101 100 { 102 TRACE(" (%p %s)\n",_this,*name);101 TRACE("MSVCRT: exception_ctor (%p %s)\n",_this,*name); 103 102 _this->vtable = exception_vtable; 104 103 _this->name = *name; … … 112 111 void MSVCRT_exception_copy_ctor(exception * _this, const exception * rhs) 113 112 { 114 TRACE(" (%p %p)\n",_this,rhs);113 TRACE("MSVCRT: exception_copy_ctor (%p %p)\n",_this,rhs); 115 114 if (_this != rhs) 116 115 memcpy (_this, rhs, sizeof (*_this)); … … 123 122 void MSVCRT_exception_default_ctor(exception * _this) 124 123 { 125 TRACE(" (%p)\n",_this);124 TRACE("MSVCRT: exception_default_ctor (%p)\n",_this); 126 125 _this->vtable = exception_vtable; 127 126 _this->name = ""; … … 134 133 void MSVCRT_exception_dtor(exception * _this) 135 134 { 136 TRACE(" (%p)\n",_this);135 TRACE("MSVCRT: exception_dtor(%p)\n",_this); 137 136 } 138 137 … … 500 499 { 501 500 /* Note: cppobj _isn't_ a type_info, we use that struct for its vtable ptr */ 502 TRACE(" (%p)\n",cppobj);501 TRACE("MSVCRT: ___RTCastToVoid (%p)\n",cppobj); 503 502 504 503 /* Casts to void* simply cast to the base object */
Note:
See TracChangeset
for help on using the changeset viewer.