I want to send a class (not an object) as a parameter. In Delphi, I can use this:
TDemo = class of baseclass;
In C , how can I write this?
CodePudding user response:
C has no equivalent to Delphi metaclass types, so what you are asking for is simply not possible.