Check this demo source from the excellent Detour library:
implementation
{$R *.dfm}
var
TrampolineGetMemory: function(Size: NativeInt): Pointer;
cdecl = nil;
Please look at the cdecl = nil;
statement. What does it mean in this context?
Note - I already know that cdecl
stands for a calling convention.