| 734 | key = 0; |
| 735 | } |
| 736 | virtual VOID GetKeyAsString(LONG &key, CHAR *szName, SIZE_T nBufferLen) |
| 737 | { |
| 738 | #if _MSC_VER < 1400 |
| 739 | _snprintf_s(szName, nBufferLen, "%d", key); |
| 740 | #else |
| 741 | _snprintf_s(szName, nBufferLen, nBufferLen, "%d", key); |
| 742 | #endif |
| 743 | } |
| 744 | |
| 745 | static const int AllocHashEntryTypeSize = sizeof(AllocHashEntryType); |
| 746 |