1998-10-11 17:00:29 +00:00
|
|
|
/*
|
|
|
|
* MSACM library
|
|
|
|
*
|
|
|
|
* Copyright 1998 Patrik Stridvall
|
2002-03-09 23:29:33 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
|
1999-02-17 13:51:06 +00:00
|
|
|
#include "winbase.h"
|
1999-02-19 10:37:02 +00:00
|
|
|
#include "winerror.h"
|
2000-09-26 22:20:14 +00:00
|
|
|
#include "mmsystem.h"
|
1998-10-11 17:00:29 +00:00
|
|
|
#include "msacm.h"
|
2000-09-26 22:20:14 +00:00
|
|
|
#include "msacmdrv.h"
|
|
|
|
#include "wineacm.h"
|
2002-03-09 23:29:33 +00:00
|
|
|
#include "wine/debug.h"
|
1998-10-11 17:00:29 +00:00
|
|
|
|
2002-03-09 23:29:33 +00:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msacm);
|
1999-04-19 14:56:29 +00:00
|
|
|
|
2001-01-06 01:23:11 +00:00
|
|
|
/**************************************************************************
|
2001-06-20 23:03:14 +00:00
|
|
|
* DllEntryPoint (MSACM.255)
|
2001-01-06 01:23:11 +00:00
|
|
|
*
|
|
|
|
* MSACM DLL entry point
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL WINAPI MSACM_DllEntryPoint(DWORD fdwReason, HINSTANCE16 hinstDLL, WORD ds,
|
|
|
|
WORD wHeapSize, DWORD dwReserved1, WORD wReserved2)
|
|
|
|
{
|
|
|
|
static HANDLE hndl;
|
|
|
|
|
|
|
|
TRACE("0x%x 0x%lx\n", hinstDLL, fdwReason);
|
|
|
|
|
|
|
|
switch (fdwReason) {
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
if (!hndl && !(hndl = LoadLibraryA("MSACM32.DLL"))) {
|
|
|
|
ERR("Could not load sibling MsAcm32.dll\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
FreeLibrary(hndl);
|
|
|
|
hndl = 0;
|
|
|
|
break;
|
|
|
|
case DLL_THREAD_ATTACH:
|
|
|
|
case DLL_THREAD_DETACH:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1998-10-11 17:00:29 +00:00
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmGetVersion (MSACM.7)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
2001-01-06 01:23:11 +00:00
|
|
|
DWORD WINAPI acmGetVersion16(void)
|
1998-10-11 17:00:29 +00:00
|
|
|
{
|
2001-01-06 01:23:11 +00:00
|
|
|
return acmGetVersion();
|
1998-10-11 17:00:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmMetrics (MSACM.8)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
MMRESULT16 WINAPI acmMetrics16(
|
|
|
|
HACMOBJ16 hao, UINT16 uMetric, LPVOID pMetric)
|
|
|
|
{
|
2001-01-06 01:23:11 +00:00
|
|
|
FIXME("(0x%04x, %d, %p): semi-stub\n", hao, uMetric, pMetric);
|
|
|
|
|
2002-03-26 19:48:42 +00:00
|
|
|
if(!hao) return acmMetrics(0, uMetric, pMetric);
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
1998-10-11 17:00:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmDriverEnum (MSACM.10)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmDriverEnum16(
|
|
|
|
ACMDRIVERENUMCB16 fnCallback, DWORD dwInstance, DWORD fdwEnum)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(%p, %ld, %ld): stub\n",
|
1998-10-11 17:00:29 +00:00
|
|
|
fnCallback, dwInstance, fdwEnum
|
|
|
|
);
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmDriverDetails (MSACM.11)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
MMRESULT16 WINAPI acmDriverDetails16(
|
|
|
|
HACMDRIVERID16 hadid, LPACMDRIVERDETAILS16 padd, DWORD fdwDetails)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %p, %ld): stub\n", hadid, padd, fdwDetails);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmDriverAdd (MSACM.12)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmDriverAdd16(
|
|
|
|
LPHACMDRIVERID16 phadid, HINSTANCE16 hinstModule,
|
|
|
|
LPARAM lParam, DWORD dwPriority, DWORD fdwAdd)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(%p, 0x%04x, %ld, %ld, %ld): stub\n",
|
1998-10-11 17:00:29 +00:00
|
|
|
phadid, hinstModule, lParam, dwPriority, fdwAdd
|
|
|
|
);
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmDriverRemove (MSACM.13)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmDriverRemove16(
|
|
|
|
HACMDRIVERID16 hadid, DWORD fdwRemove)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %ld): stub\n", hadid, fdwRemove);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmDriverOpen (MSACM.14)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmDriverOpen16(
|
|
|
|
LPHACMDRIVER16 phad, HACMDRIVERID16 hadid, DWORD fdwOpen)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(%p, 0x%04x, %ld): stub\n", phad, hadid, fdwOpen);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmDriverClose (MSACM.15)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmDriverClose16(
|
|
|
|
HACMDRIVER16 had, DWORD fdwClose)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %ld): stub\n", had, fdwClose);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmDriverMessage (MSACM.16)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
LRESULT WINAPI acmDriverMessage16(
|
|
|
|
HACMDRIVER16 had, UINT16 uMsg, LPARAM lParam1, LPARAM lParam2)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %d, %ld, %ld): stub\n",
|
1998-10-11 17:00:29 +00:00
|
|
|
had, uMsg, lParam1, lParam2
|
|
|
|
);
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmDriverID (MSACM.17)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmDriverID16(
|
|
|
|
HACMOBJ16 hao, LPHACMDRIVERID16 phadid, DWORD fdwDriverID)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %p, %ld): stub\n", hao, phadid, fdwDriverID);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmDriverPriority (MSACM.18)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmDriverPriority16(
|
|
|
|
HACMDRIVERID16 hadid, DWORD dwPriority, DWORD fdwPriority)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %ld, %ld): stub\n",
|
1998-10-11 17:00:29 +00:00
|
|
|
hadid, dwPriority, fdwPriority
|
|
|
|
);
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmFormatTagDetails (MSACM.30)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmFormatTagDetails16(
|
|
|
|
HACMDRIVER16 had, LPACMFORMATTAGDETAILS16 paftd, DWORD fdwDetails)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %p, %ld): stub\n", had, paftd, fdwDetails);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmFormatTagEnum (MSACM.31)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmFormatTagEnum16(
|
|
|
|
HACMDRIVER16 had, LPACMFORMATTAGDETAILS16 paftd,
|
|
|
|
ACMFORMATTAGENUMCB16 fnCallback, DWORD dwInstance, DWORD fdwEnum)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %p, %p, %ld, %ld): stub\n",
|
1998-10-11 17:00:29 +00:00
|
|
|
had, paftd, fnCallback, dwInstance, fdwEnum
|
|
|
|
);
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmFormatChoose (MSACM.40)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmFormatChoose16(
|
|
|
|
LPACMFORMATCHOOSE16 pafmtc)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(%p): stub\n", pafmtc);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmFormatDetails (MSACM.41)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmFormatDetails16(
|
|
|
|
HACMDRIVER16 had, LPACMFORMATDETAILS16 pafd, DWORD fdwDetails)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %p, %ld): stub\n", had, pafd, fdwDetails);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmFormatEnum (MSACM.42)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmFormatEnum16(
|
|
|
|
HACMDRIVER16 had, LPACMFORMATDETAILS16 pafd,
|
|
|
|
ACMFORMATENUMCB16 fnCallback, DWORD dwInstance, DWORD fdwEnum)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %p, %p, %ld, %ld): stub\n",
|
1998-10-11 17:00:29 +00:00
|
|
|
had, pafd, fnCallback, dwInstance, fdwEnum
|
|
|
|
);
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmFormatSuggest (MSACM.45)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmFormatSuggest16(
|
1999-02-14 09:41:42 +00:00
|
|
|
HACMDRIVER16 had, LPWAVEFORMATEX pwfxSrc,
|
|
|
|
LPWAVEFORMATEX pwfxDst, DWORD cbwfxDst, DWORD fdwSuggest)
|
1998-10-11 17:00:29 +00:00
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %p, %p, %ld, %ld): stub\n",
|
1998-10-11 17:00:29 +00:00
|
|
|
had, pwfxSrc, pwfxDst, cbwfxDst, fdwSuggest
|
|
|
|
);
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmFilterTagDetails (MSACM.50)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmFilterTagDetails16(
|
|
|
|
HACMDRIVER16 had, LPACMFILTERTAGDETAILS16 paftd, DWORD fdwDetails)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %p, %ld): stub\n", had, paftd, fdwDetails);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmFilterTagEnum (MSACM.51)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmFilterTagEnum16(
|
|
|
|
HACMDRIVER16 had, LPACMFILTERTAGDETAILS16 paftd,
|
|
|
|
ACMFILTERTAGENUMCB16 fnCallback, DWORD dwInstance, DWORD fdwEnum)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %p, %p, %ld, %ld): stub\n",
|
1998-10-11 17:00:29 +00:00
|
|
|
had, paftd, fnCallback, dwInstance, fdwEnum
|
|
|
|
);
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmFilterChoose (MSACM.60)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmFilterChoose16(
|
|
|
|
LPACMFILTERCHOOSE16 pafltrc)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(%p): stub\n", pafltrc);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmFilterDetails (MSACM.61)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmFilterDetails16(
|
|
|
|
HACMDRIVER16 had, LPACMFILTERDETAILS16 pafd, DWORD fdwDetails)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %p, %ld): stub\n", had, pafd, fdwDetails);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmFilterEnum (MSACM.62)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmFilterEnum16(
|
|
|
|
HACMDRIVER16 had, LPACMFILTERDETAILS16 pafd,
|
|
|
|
ACMFILTERENUMCB16 fnCallback, DWORD dwInstance, DWORD fdwEnum)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %p, %p, %ld, %ld): stub\n",
|
1998-10-11 17:00:29 +00:00
|
|
|
had, pafd, fnCallback, dwInstance, fdwEnum
|
|
|
|
);
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmStreamOpen (MSACM.70)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmStreamOpen16(
|
|
|
|
LPHACMSTREAM16 phas, HACMDRIVER16 had,
|
1999-02-14 09:41:42 +00:00
|
|
|
LPWAVEFORMATEX pwfxSrc, LPWAVEFORMATEX pwfxDst,
|
|
|
|
LPWAVEFILTER pwfltr, DWORD dwCallback,
|
1998-10-11 17:00:29 +00:00
|
|
|
DWORD dwInstance, DWORD fdwOpen)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(%p, 0x%04x, %p, %p, %p, %ld, %ld, %ld): stub\n",
|
1998-10-11 17:00:29 +00:00
|
|
|
phas, had, pwfxSrc, pwfxDst, pwfltr,
|
|
|
|
dwCallback, dwInstance, fdwOpen
|
|
|
|
);
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmStreamClose (MSACM.71)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmStreamClose16(
|
|
|
|
HACMSTREAM16 has, DWORD fdwClose)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %ld): stub\n", has, fdwClose);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmStreamSize (MSACM.72)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmStreamSize16(
|
|
|
|
HACMSTREAM16 has, DWORD cbInput,
|
|
|
|
LPDWORD pdwOutputBytes, DWORD fdwSize)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %ld, %p, %ld): stub\n",
|
1998-10-11 17:00:29 +00:00
|
|
|
has, cbInput, pdwOutputBytes, fdwSize
|
|
|
|
);
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmStreamConvert (MSACM.75)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmStreamConvert16(
|
|
|
|
HACMSTREAM16 has, LPACMSTREAMHEADER16 pash, DWORD fdwConvert)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %p, %ld): stub\n", has, pash, fdwConvert);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmStreamReset (MSACM.76)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmStreamReset16(
|
|
|
|
HACMSTREAM16 has, DWORD fdwReset)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %ld): stub\n", has, fdwReset);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmStreamPrepareHeader (MSACM.77)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmStreamPrepareHeader16(
|
|
|
|
HACMSTREAM16 has, LPACMSTREAMHEADER16 pash, DWORD fdwPrepare)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %p, %ld): stub\n", has, pash, fdwPrepare);
|
1998-10-11 17:00:29 +00:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* acmStreamUnprepareHeader (MSACM.78)
|
1998-10-11 17:00:29 +00:00
|
|
|
*/
|
|
|
|
MMRESULT16 WINAPI acmStreamUnprepareHeader16(
|
|
|
|
HACMSTREAM16 has, LPACMSTREAMHEADER16 pash, DWORD fdwUnprepare)
|
|
|
|
{
|
1999-05-14 08:17:14 +00:00
|
|
|
FIXME("(0x%04x, %p, %ld): stub\n",
|
1998-10-11 17:00:29 +00:00
|
|
|
has, pash, fdwUnprepare
|
|
|
|
);
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return MMSYSERR_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* ACMAPPLICATIONEXIT (MSACM.150)
|
1998-10-11 17:00:29 +00:00
|
|
|
* FIXME
|
|
|
|
* No documentation found.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* ACMHUGEPAGELOCK (MSACM.175)
|
|
|
|
*FIXME
|
1998-10-11 17:00:29 +00:00
|
|
|
* No documentation found.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* ACMHUGEPAGEUNLOCK (MSACM.176)
|
1998-10-11 17:00:29 +00:00
|
|
|
* FIXME
|
|
|
|
* No documentation found.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* ACMOPENCONVERSION (MSACM.200)
|
1998-10-11 17:00:29 +00:00
|
|
|
* FIXME
|
|
|
|
* No documentation found.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* ACMCLOSECONVERSION (MSACM.201)
|
1998-10-11 17:00:29 +00:00
|
|
|
* FIXME
|
|
|
|
* No documentation found.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* ACMCONVERT (MSACM.202)
|
1998-10-11 17:00:29 +00:00
|
|
|
* FIXME
|
|
|
|
* No documentation found.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-04-06 20:21:16 +00:00
|
|
|
* ACMCHOOSEFORMAT (MSACM.203)
|
1998-10-11 17:00:29 +00:00
|
|
|
* FIXME
|
|
|
|
* No documentation found.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|