Searched refs:m_pbNodeSlots (Results 1 – 1 of 1) sorted by relevance
/reactos/dll/win32/shdocvw/ |
H A D | mrulist.cpp | 972 LPBYTE m_pbNodeSlots = NULL; // The node slots (contains SLOT_... flags) member in CMruPidlList 1011 m_pbNodeSlots = (LPBYTE)::LocalFree(m_pbNodeSlots); in ~CMruPidlList() 1038 if (SHGetValueW(m_hKey, NULL, L"NodeSlots", NULL, m_pbNodeSlots, &cbNodeSlots) != ERROR_SUCCESS) in _LoadNodeSlots() 1047 SHSetValueW(m_hKey, NULL, L"NodeSlots", REG_BINARY, m_pbNodeSlots, cbNodeSlots); in _SaveNodeSlots() 1052 m_pbNodeSlots = (BYTE*)LocalAlloc(LPTR, m_cSlotRooms * sizeof(BYTE)); in _InitNodeSlots() 1053 if (!m_pbNodeSlots) in _InitNodeSlots() 1072 m_pbNodeSlots[m_cMaxNodeSlots] = SLOT_SET; in GetEmptySlot() 1080 if (m_pbNodeSlots[iNodeSlot] & SLOT_SET) in GetEmptySlot() 1083 m_pbNodeSlots[iNodeSlot] = SLOT_SET; in GetEmptySlot() 1241 m_pbNodeSlots[nNodeSlot - 1] = 0; // nNodeSlot is 1-base in EmptyNodeSlot()
|