Lines Matching defs:item
48 int InsertItem(const LVITEM* item) { return ListView_InsertItem(_window, item); }
50 bool SetItem(const LVITEM* item) { return BOOLToBool(ListView_SetItem(_window, item)); }
57 int InsertItem(const LV_ITEMW* item) { return (int)SendMsg(LVM_INSERTITEMW, 0, (LPARAM)item); }
59 bool SetItem(const LV_ITEMW* item) { return BOOLToBool((BOOL)SendMsg(LVM_SETITEMW, 0, (LPARAM)item)); }
74 /* startIndex : The index of the item with which to begin the search,
75 or -1 to find the first item that matches the specified flags.
76 The specified item itself is excluded from the search. */
81 bool GetItem(LVITEM* item) const { return BOOLToBool(ListView_GetItem(_window, item)); }