Delphi example:
Procedure Test;
begin
{$I Inc\UserPolyBuffer.inc}
// some code
end;
VC example:
#include "include\aspr.h"
VOID Test
{
USER_POLYBUFFER
// some code
}
NOTE! Try to avoid operators that change procudure logic before polymorphic marker. This version doesn't support marks inside cycles, so please, place them outside the cycles and don't use the code like this:
begin
repeat
{$I Inc\UserPolyBuffer.inc}
// some code
until ...;
// some code
end;