/*1* Copyright (C) 2002 Alexandre Julliard2*3* This library is free software; you can redistribute it and/or4* modify it under the terms of the GNU Lesser General Public5* License as published by the Free Software Foundation; either6* version 2.1 of the License, or (at your option) any later version.7*8* This library is distributed in the hope that it will be useful,9* but WITHOUT ANY WARRANTY; without even the implied warranty of10* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU11* Lesser General Public License for more details.12*13* You should have received a copy of the GNU Lesser General Public14* License along with this library; if not, write to the Free Software15* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA16*/1718#ifndef __AUDEVCOD__19#define __AUDEVCOD__2021typedef enum _tagSND_DEVICE_ERROR22{23SNDDEV_ERROR_Open=1,24SNDDEV_ERROR_Close=2,25SNDDEV_ERROR_GetCaps=3,26SNDDEV_ERROR_PrepareHeader=4,27SNDDEV_ERROR_UnprepareHeader=5,28SNDDEV_ERROR_Reset=6,29SNDDEV_ERROR_Restart=7,30SNDDEV_ERROR_GetPosition=8,31SNDDEV_ERROR_Write=9,32SNDDEV_ERROR_Pause=10,33SNDDEV_ERROR_Stop=11,34SNDDEV_ERROR_Start=12,35SNDDEV_ERROR_AddBuffer=13,36SNDDEV_ERROR_Query=1437} SNDDEV_ERR;3839#define EC_SND_DEVICE_ERROR_BASE 0x020040#define EC_SNDDEV_IN_ERROR (EC_SND_DEVICE_ERROR_BASE+0x00)41#define EC_SNDDEV_OUT_ERROR (EC_SND_DEVICE_ERROR_BASE+0x01)4243#endif /* __AUDEVCOD__ */444546