| 896 | } |
| 897 | |
| 898 | int CClient::SnapNumItems(int SnapId) const |
| 899 | { |
| 900 | dbg_assert(SnapId >= 0 && SnapId < NUM_SNAPSHOT_TYPES, "invalid SnapId"); |
| 901 | if(!m_aapSnapshots[g_Config.m_ClDummy][SnapId]) |
| 902 | return 0; |
| 903 | return m_aapSnapshots[g_Config.m_ClDummy][SnapId]->m_pAltSnap->NumItems(); |
| 904 | } |
| 905 | |
| 906 | void CClient::SnapSetStaticsize(int ItemType, int Size) |
| 907 | { |
no test coverage detected