Type Slot

#include <heappage.h>

A slot maintains information about a record in a HeapPage
struct Slot {
    short  offset;
    short  length;
}
offset indicates the location of the record on the page (with respect to the beginning of the data area), and length is the length of that record in bytes.