Ignore:
Timestamp:
Apr 10, 2003, 12:28:07 PM (22 years ago)
Author:
sandervl
Message:

PF: MSVCRT update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/msvcrt/cpp.c

    r9633 r10005  
    2222#include "msvcrt/eh.h"
    2323#include "msvcrt/stdlib.h"
    24 
     24#include <string.h>
    2525#include "wine/debug.h"
    2626
    2727WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
    28 
    2928
    3029typedef void (*v_table_ptr)();
     
    10099void MSVCRT_exception_ctor(exception * _this, const char ** name)
    101100{
    102   TRACE("(%p %s)\n",_this,*name);
     101  TRACE("MSVCRT: exception_ctor (%p %s)\n",_this,*name);
    103102  _this->vtable = exception_vtable;
    104103  _this->name = *name;
     
    112111void MSVCRT_exception_copy_ctor(exception * _this, const exception * rhs)
    113112{
    114   TRACE("(%p %p)\n",_this,rhs);
     113  TRACE("MSVCRT: exception_copy_ctor (%p %p)\n",_this,rhs);
    115114  if (_this != rhs)
    116115    memcpy (_this, rhs, sizeof (*_this));
     
    123122void MSVCRT_exception_default_ctor(exception * _this)
    124123{
    125   TRACE("(%p)\n",_this);
     124  TRACE("MSVCRT: exception_default_ctor (%p)\n",_this);
    126125  _this->vtable = exception_vtable;
    127126  _this->name = "";
     
    134133void MSVCRT_exception_dtor(exception * _this)
    135134{
    136   TRACE("(%p)\n",_this);
     135  TRACE("MSVCRT: exception_dtor(%p)\n",_this);
    137136}
    138137
     
    500499{
    501500  /* 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);
    503502
    504503  /* Casts to void* simply cast to the base object */
Note: See TracChangeset for help on using the changeset viewer.