Home | History | Annotate | Download | only in win

Lines Matching refs:store

305     STGMEDIUM store;
311 } else if (SUCCEEDED(dataObject->GetData(urlWFormat(), &store))) {
313 UChar* data = (UChar*)GlobalLock(store.hGlobal);
315 GlobalUnlock(store.hGlobal);
316 ReleaseStgMedium(&store);
318 } else if (SUCCEEDED(dataObject->GetData(urlFormat(), &store))) {
320 char* data = (char*)GlobalLock(store.hGlobal);
322 GlobalUnlock(store.hGlobal);
323 ReleaseStgMedium(&store);
325 } else if (SUCCEEDED(dataObject->GetData(filenameWFormat(), &store))) {
327 wchar_t* data = (wchar_t*)GlobalLock(store.hGlobal);
336 GlobalUnlock(store.hGlobal);
337 ReleaseStgMedium(&store);
338 } else if (SUCCEEDED(dataObject->GetData(filenameFormat(), &store))) {
340 char* data = (char*)GlobalLock(store.hGlobal);
349 GlobalUnlock(store.hGlobal);
350 ReleaseStgMedium(&store);
357 STGMEDIUM store;
360 if (SUCCEEDED(dataObject->GetData(plainTextWFormat(), &store))) {
362 UChar* data = (UChar*)GlobalLock(store.hGlobal);
364 GlobalUnlock(store.hGlobal);
365 ReleaseStgMedium(&store);
367 } else if (SUCCEEDED(dataObject->GetData(plainTextFormat(), &store))) {
369 char* data = (char*)GlobalLock(store.hGlobal);
371 GlobalUnlock(store.hGlobal);
372 ReleaseStgMedium(&store);
427 STGMEDIUM store;
430 if (SUCCEEDED(data->GetData(htmlFormat(), &store))) {
432 char* data = (char*)GlobalLock(store.hGlobal);
433 SIZE_T dataSize = ::GlobalSize(store.hGlobal);
435 GlobalUnlock(store.hGlobal);
436 ReleaseStgMedium(&store);
440 if (SUCCEEDED(data->GetData(texthtmlFormat(), &store))) {
442 UChar* data = (UChar*)GlobalLock(store.hGlobal);
444 GlobalUnlock(store.hGlobal);
445 ReleaseStgMedium(&store);