in src/framework/shared/core/fxmemorybufferpreallocated.cpp [28:49]
    _Pre_notnull_ _Pre_writable_byte_size_(BufferSize) PVOID Buffer,
    _In_ size_t BufferSize
    ) :
    FxMemoryObject(FxDriverGlobals, sizeof(*this), BufferSize),
    m_pBuffer(Buffer)
/*++
Routine Description:
    Contstructor for this object.  Stores off all the pointers and sizes passed
    in by the caller.
Arguments:
    Buffer  - Buffer to associate with this object
    BufferSize - Size of Buffer in bytes
Return Value:
    None
  --*/
{
}