Changeset 7926 for trunk/src/ole32/bindctx.c
- Timestamp:
- Feb 15, 2002, 6:18:52 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ole32/bindctx.c
r7508 r7926 15 15 #include "wine/obj_moniker.h" 16 16 #include "debugtools.h" 17 #include "heap.h"18 19 17 20 18 DEFAULT_DEBUG_CHANNEL(ole); … … 239 237 FIXME("This->bindCtxTableSize: %ld is out of data limite \n",This->bindCtxTableSize); 240 238 return E_FAIL; 241 }239 } 242 240 243 241 This->bindCtxTableSize+=BLOCK_TAB_SIZE; /* new table size */ … … 311 309 if (pbindopts->cbStruct > sizeof(BIND_OPTS2)) 312 310 { 313 WARN("invalid size ");311 WARN("invalid size\n"); 314 312 return E_INVALIDARG; /* FIXME : not verified */ 315 313 } … … 332 330 if (pbindopts->cbStruct > sizeof(BIND_OPTS2)) 333 331 { 334 WARN("invalid size ");332 WARN("invalid size\n"); 335 333 return E_INVALIDARG; /* FIXME : not verified */ 336 334 } … … 387 385 return E_OUTOFMEMORY; 388 386 strcpyW(This->bindCtxTable[This->bindCtxTableLastIndex].pkeyObj,pszkey); 389 }387 } 390 388 391 389 This->bindCtxTableLastIndex++; … … 521 519 522 520 /****************************************************************************** 523 * CreateBindCtx 521 * CreateBindCtx (OLE32.52) 524 522 ******************************************************************************/ 525 523 HRESULT WINAPI CreateBindCtx(DWORD reserved, LPBC * ppbc)
Note:
See TracChangeset
for help on using the changeset viewer.