try other thing

This commit is contained in:
Adam D. Ruppe 2023-10-03 13:09:41 -04:00
parent 56b3f44012
commit b5da2be1e6
1 changed files with 1 additions and 1 deletions

2
com.d
View File

@ -614,7 +614,7 @@ auto createComObject(T = Dynamic)(GUID classId) {
T obj;
}
ComCheck(CoCreateInstance(&classId, null, /*CLSCTX_INPROC_SERVER*/ CLSCTX_LOCAL_SERVER, &iid, cast(void**) &obj), "Failed to create object");
ComCheck(CoCreateInstance(&classId, null, CLSCTX_INPROC_SERVER | CLSCTX_LOCAL_SERVER, &iid, cast(void**) &obj), "Failed to create object");
return ComClient!(Dify!T, typeof(obj))(obj);
}