_Pre_notnull_ _Pre_writable_byte_size_()

in src/framework/shared/core/fxmemorybufferpreallocated.cpp [54:77]


    _Pre_notnull_ _Pre_writable_byte_size_(BufferSize) PVOID Buffer,
    _In_ size_t BufferSize
    ) :
    FxMemoryObject(FxDriverGlobals, ObjectSize, BufferSize),
    m_pBuffer(Buffer)
/*++

Routine Description:
    Contstructor for this object.  Stores off all the pointers and sizes passed
    in by the caller.

Arguments:
    ObjectSize  - Size of the derived object
    
    Buffer  - Buffer to associate with this object

    BufferSize - Size of Buffer in bytes

Return Value:
    None

  --*/
{
}