Merge pull request #437 from dkorpel/patch-1

Allow converting ComResult to VARIANT
This commit is contained in:
Adam D. Ruppe 2024-05-28 07:42:57 -04:00 committed by GitHub
commit d13828c50b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

2
com.d
View File

@ -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;