|
How to register my ASIO driver in database?
Hi All !!!
I I just start working with ASIO SDK2.0 but samplehost don't want load my driver.
In "asiolist.cpp" call of "CoCreateInstance()" returns "REGDB_E_CLASSNOTREG"(0x80040154)
--------------------------
rc = CoCreateInstance(lpdrv->clsid,0,CLSCTX_INPROC_SERVER,lpdrv->clsid,asiodrv);
if(rc == S_OK) {
lpdrv->asiodrv = *asiodrv;
return 0;
}
else if (rc == REGDB_E_CLASSNOTREG)
strcpy (info->messageText, "Driver not registered in the Registration Database!");
--------------------------
Why it is?
There is in registry correct "InProcServer32" entry with pathname & threaing model.
But it's doesn't help.
What I omitted in addition to this?
Last edited by Kleopard; Jul 13, 2003 at 01:59 AM.
|