Lines Matching refs:hMem
298 HGLOBAL hMem = NULL; in clip_mch_request_selection() local
392 if ((hMem = GetClipboardData(CF_TEXT)) != NULL) in clip_mch_request_selection()
394 str = (char_u *)GlobalLock(hMem); in clip_mch_request_selection()
398 maxlen = (int)GlobalSize(hMem); in clip_mch_request_selection()
443 if (hMem != NULL) in clip_mch_request_selection()
444 GlobalUnlock(hMem); in clip_mch_request_selection()
461 HGLOBAL hMem = NULL; in clip_mch_set_selection() local
540 hMem = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE, metadata.txtlen + 1); in clip_mch_set_selection()
542 LPSTR lpszMem = (LPSTR)GlobalLock(hMem); in clip_mch_set_selection()
547 GlobalUnlock(hMem); in clip_mch_set_selection()
583 SetClipboardData(CF_TEXT, hMem); in clip_mch_set_selection()
584 hMem = 0; in clip_mch_set_selection()
593 if (hMem) in clip_mch_set_selection()
594 GlobalFree(hMem); in clip_mch_set_selection()