Skip to main content

memoryAreaIsDynamic

Short summary

This assertion method checks if pointer refers to dynamic area

Parameters

NameTypeCommentKind
addressPVOIDmemory addressinput
sizeInBytesUDINTnumber of bytesinput
messageAssertMessagemessage if the assertion is falseinput

Code

Declaration

METHOD memoryAreaIsDynamic
VAR_INPUT
(* memory address *)
address :PVOID;
(* number of bytes *)
sizeInBytes :UDINT;
(* message if the assertion is false *)
message :AssertMessage;
END_VAR