Help with dwt-cocoa types
Frank Benoit
keinfarbton at googlemail.com
Tue Jul 8 15:30:30 PDT 2008
Jacob Carlborg schrieb:
> typedef id (*IMP)(id, SEL, ...);
I think this typedef shows the declaration of 'IMP', not of 'id'.
struct objc_class{
// ...
}
struct objc_selector{
// ...
}
struct objc_object {
Class isa;
// ...
}
alias objc_class * Class;
alias objc_object * id;
alias objc_selector * SEL;
alias extern(C) id function(id, SEL, ...) IMP;
More information about the Digitalmars-d-dwt
mailing list