Version 4.3.0

This commit is contained in:
Gary Scavone
2009-03-24 23:02:15 -04:00
committed by Stephen Sinclair
parent 2cbce2d8bd
commit 27d9b79dc7
271 changed files with 22219 additions and 8834 deletions

View File

@@ -19,7 +19,7 @@ static LONG findDrvPath (char *clsidstr,char *dllpath,int dllpathsize)
DWORD index;
OFSTRUCT ofs;
HFILE hfile;
BOOL found = false;
BOOL found = FALSE;
CharLowerBuff(clsidstr,strlen(clsidstr));
if ((cr = RegOpenKey(HKEY_CLASSES_ROOT,COM_CLSID,&hkEnum)) == ERROR_SUCCESS) {
@@ -44,7 +44,7 @@ static LONG findDrvPath (char *clsidstr,char *dllpath,int dllpathsize)
}
RegCloseKey(hksub);
}
found = true; // break out
found = TRUE; // break out
}
}
}
@@ -134,7 +134,7 @@ AsioDriverList::AsioDriverList ()
LPASIODRVSTRUCT pdl;
LONG cr;
DWORD index = 0;
BOOL fin = false;
BOOL fin = FALSE;
numdrv = 0;
lpdrvlist = 0;
@@ -144,7 +144,7 @@ AsioDriverList::AsioDriverList ()
if ((cr = RegEnumKey(hkEnum,index++,(LPTSTR)keyname,MAXDRVNAMELEN))== ERROR_SUCCESS) {
lpdrvlist = newDrvStruct (hkEnum,keyname,0,lpdrvlist);
}
else fin = true;
else fin = TRUE;
}
if (hkEnum) RegCloseKey(hkEnum);