82 lines
2.5 KiB
C
82 lines
2.5 KiB
C
/* -*- tab-width: 8; c-basic-offset: 4 -*- */
|
|
/*
|
|
* Wine Driver for aRts Sound Server
|
|
* http://www.arts-project.org
|
|
*
|
|
* Copyright 2002 Chris Morgan<cmorgan@alum.wpi.edu>
|
|
* Code massively copied from Eric Pouech's OSS driver
|
|
*
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "wingdi.h"
|
|
#include "winuser.h"
|
|
#include "mmddk.h"
|
|
#include "arts.h"
|
|
|
|
#ifdef HAVE_ARTS
|
|
|
|
/**************************************************************************
|
|
* ARTS_drvOpen [internal]
|
|
*/
|
|
static LRESULT ARTS_drvOpen(LPSTR str)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* ARTS_drvClose [internal]
|
|
*/
|
|
static LRESULT ARTS_drvClose(DWORD_PTR dwDevID)
|
|
{
|
|
return 1;
|
|
}
|
|
#endif /* #ifdef HAVE_ARTS */
|
|
|
|
|
|
/**************************************************************************
|
|
* DriverProc (WINEARTS.@)
|
|
*/
|
|
LRESULT CALLBACK ARTS_DriverProc(DWORD_PTR dwDevID, HDRVR hDriv, UINT wMsg,
|
|
LPARAM dwParam1, LPARAM dwParam2)
|
|
{
|
|
/* EPP TRACE("(%08lX, %04X, %08lX, %08lX, %08lX)\n", */
|
|
/* EPP dwDevID, hDriv, wMsg, dwParam1, dwParam2); */
|
|
|
|
switch(wMsg) {
|
|
#ifdef HAVE_ARTS
|
|
case DRV_LOAD: if (ARTS_WaveInit()<0) return 0;
|
|
return 1;
|
|
case DRV_FREE: return ARTS_WaveClose();
|
|
case DRV_OPEN: return ARTS_drvOpen((LPSTR)dwParam1);
|
|
case DRV_CLOSE: return ARTS_drvClose(dwDevID);
|
|
case DRV_ENABLE: return 1;
|
|
case DRV_DISABLE: return 1;
|
|
case DRV_QUERYCONFIGURE: return 1;
|
|
case DRV_CONFIGURE: MessageBoxA(0, "aRts MultiMedia Driver!", "aRts Driver", MB_OK); return 1;
|
|
case DRV_INSTALL: return DRVCNF_RESTART;
|
|
case DRV_REMOVE: return DRVCNF_RESTART;
|
|
#endif
|
|
default:
|
|
return DefDriverProc(dwDevID, hDriv, wMsg, dwParam1, dwParam2);
|
|
}
|
|
}
|