mirror of https://github.com/adamdruppe/arsd.git
Merge pull request #437 from dkorpel/patch-1
Allow converting ComResult to VARIANT
This commit is contained in:
commit
d13828c50b
2
com.d
2
com.d
|
@ -605,6 +605,8 @@ VARIANT toComVariant(T)(T arg) {
|
||||||
ret.pdispVal = arg.innerComObject_;
|
ret.pdispVal = arg.innerComObject_;
|
||||||
} else static if(is(T : ComProperty)) {
|
} else static if(is(T : ComProperty)) {
|
||||||
ret = arg._fetchProperty();
|
ret = arg._fetchProperty();
|
||||||
|
} else static if (is(T : ComResult)) {
|
||||||
|
ret = arg.result;
|
||||||
} else static if(is(T : int)) {
|
} else static if(is(T : int)) {
|
||||||
ret.vt = 3;
|
ret.vt = 3;
|
||||||
ret.intVal = arg;
|
ret.intVal = arg;
|
||||||
|
|
Loading…
Reference in New Issue