diff --git a/com.d b/com.d index c54b836..3fe5cb2 100644 --- a/com.d +++ b/com.d @@ -605,6 +605,8 @@ VARIANT toComVariant(T)(T arg) { ret.pdispVal = arg.innerComObject_; } else static if(is(T : ComProperty)) { ret = arg._fetchProperty(); + } else static if (is(T : ComResult)) { + ret = arg.result; } else static if(is(T : int)) { ret.vt = 3; ret.intVal = arg;