ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

DWORD APIENTRY auxMessage ( UINT  DeviceId,
UINT  Message,
DWORD_PTR  PrivateHandle,
DWORD_PTR  Parameter1,
DWORD_PTR  Parameter2 
)

Definition at line 19 of file auxMessage.c.

{
    MMRESULT Result = MMSYSERR_NOTSUPPORTED;

    AcquireEntrypointMutex(AUX_DEVICE_TYPE);

    SND_TRACE(L"auxMessage - Message type %d\n", Message);

    switch ( Message )
    {
        case AUXDM_GETNUMDEVS :
        {
            Result = GetSoundDeviceCount(AUX_DEVICE_TYPE);
            break;
        }

        case AUXDM_GETDEVCAPS :
        {
            Result = MmeGetSoundDeviceCapabilities(AUX_DEVICE_TYPE,
                                                   DeviceId,
                                                   (PVOID) Parameter1,
                                                   Parameter2);
            break;
        }
    }

    SND_TRACE(L"auxMessage returning MMRESULT %d\n", Result);

    ReleaseEntrypointMutex(AUX_DEVICE_TYPE);

    return Result;
}

Generated on Sun May 27 2012 06:04:04 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.