Ignore:
Timestamp:
Feb 15, 2002, 6:18:52 PM (24 years ago)
Author:
sandervl
Message:

Wine 20020215 resync

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ole32/bindctx.c

    r7508 r7926  
    1515#include "wine/obj_moniker.h"
    1616#include "debugtools.h"
    17 #include "heap.h"
    18 
    1917
    2018DEFAULT_DEBUG_CHANNEL(ole);
     
    239237            FIXME("This->bindCtxTableSize: %ld is out of data limite \n",This->bindCtxTableSize);
    240238            return E_FAIL;
    241 }
     239        }
    242240
    243241        This->bindCtxTableSize+=BLOCK_TAB_SIZE; /* new table size */
     
    311309    if (pbindopts->cbStruct > sizeof(BIND_OPTS2))
    312310    {
    313         WARN("invalid size");
     311        WARN("invalid size\n");
    314312        return E_INVALIDARG; /* FIXME : not verified */
    315313    }
     
    332330    if (pbindopts->cbStruct > sizeof(BIND_OPTS2))
    333331    {
    334         WARN("invalid size");
     332        WARN("invalid size\n");
    335333        return E_INVALIDARG; /* FIXME : not verified */
    336334    }
     
    387385            return E_OUTOFMEMORY;
    388386        strcpyW(This->bindCtxTable[This->bindCtxTableLastIndex].pkeyObj,pszkey);
    389 }
     387    }
    390388
    391389    This->bindCtxTableLastIndex++;
     
    521519
    522520/******************************************************************************
    523  *        CreateBindCtx
     521 *        CreateBindCtx (OLE32.52)
    524522 ******************************************************************************/
    525523HRESULT WINAPI CreateBindCtx(DWORD reserved, LPBC * ppbc)
Note: See TracChangeset for help on using the changeset viewer.