Le 2012-04-12 à 17:24, Andrej Mitrovic a écrit :

> Currently you don't have to use address-of operator if you mark the
> extern(C) function as taking ref:
> 
> extern(C) void c_modify_int(ref int x) { }
> void modify_int(ref int x)
> {
>    c_modify_int(x);
> }

Even if declaring C functions with ref is allowed, it can sometime be a problem 
to declare C functions like that. Not only it changes the usage, but also it's 
not too rare to see pointer parameters like this accepting a null pointer as a 
way to make the parameter optional, which ref won't let you do.

-- 
Michel Fortin
[email protected]
http://michelf.com/



_______________________________________________
dmd-beta mailing list
[email protected]
http://lists.puremagic.com/mailman/listinfo/dmd-beta

Reply via email to