Temporary #if 0'ed part for builtin modules in MSACM to make it

compile with the patch for loadable drivers.
This commit is contained in:
Eric Pouech 1999-01-26 17:26:54 +00:00 committed by Alexandre Julliard
parent 0248381a14
commit 6bc8bbd3b0
1 changed files with 4 additions and 0 deletions

View File

@ -180,6 +180,7 @@ PWINE_ACMOBJ32 MSACM_GetObj32(HACMOBJ32 hObj)
*/
HDRVR32 MSACM_OpenDriverProc32(DRIVERPROC32 pfnDriverProc)
{
#if 0
LPDRIVERITEM32A pDrvr;
/* FIXME: This is a very bad solution */
@ -190,6 +191,9 @@ HDRVR32 MSACM_OpenDriverProc32(DRIVERPROC32 pfnDriverProc)
/* FIXME: Send DRV_OPEN among others to DriverProc */
return (HDRVR32) pDrvr;
#else
return (HDRVR32) 0;
#endif
}