INtime SDK Help
RtAllocateContiguousMemory (iwin32)
INtime SDK v7 > About INtime > Alternate APIs > iwin32 API > iwin32 API > RtAllocateContiguousMemory (iwin32)

Allocates memory from the current process' memory pool. Provided only for compatibility.

PVOID RtAllocateContiguousMemory(
    ULONG               Length,
    LARGE_INTEGER       HighestAddress);

Parameters

Length
The number of bytes to allocate.
HighestAddress
Ignored.

Remarks

This function is implemented via malloc.

The HighestAddress parameter is ignored.

Return Values

Pointer to allocated memory
Success.
NULL
Failure.

Requirements

Versions Defined in Include Link to
INtime 3.0 intime/rt/include/iwin32.h iwin32.h iwin32.lib

Note

This function operates in the real-time portion of your application.

See Also

malloc, iwin32 API, iwin32 Overview