Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 60 of file flatbuf.c.
{ PVOID Destination; /* First reserve the memory */ Destination = FlatBuf_Arg_Reserve(Position, FreeSize, Size, Align); if (Destination) { /* We have space, do the copy */ RtlCopyMemory(Destination, Buffer, Size); } /* Return the pointer to the data */ return Destination; }