6
votes
How do you initialise a const array of TGUID from Interface type data, in Delphi?
You can pull the GUIDs from the interface declarations and declare them as (string) constants. You can then use these constants in your interface declarations and your array constant declarations. …
2
votes
Passing Interface’s method as parameter
How about this:
type
TMoveProc = procedure(const SomeIntf: ISomeInterface);
TSomeObject = class
public
procedure Move(const SomeIntf: ISomeInterface; MoveProc: TMoveProc) …
