- strmini.h: Include windef.h so CDECL gets defined for msvc version of DEFINE_GUIDEX...
[reactos.git] / reactos / lib / drivers / sound / mmebuddy / midi / modMessage.c
1 /*
2 * PROJECT: ReactOS Sound System "MME Buddy" Library
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: lib/sound/mmebuddy/midi/modMessage.c
5 *
6 * PURPOSE: Provides the modMessage exported function, as required by
7 * the MME API, for MIDI output device support.
8 *
9 * PROGRAMMERS: Andrew Greenwood (silverblade@reactos.org)
10 */
11
12 #include <windows.h>
13 #include <mmsystem.h>
14 #include <mmddk.h>
15
16 #include <ntddsnd.h>
17 #include <sndtypes.h>
18
19 #include <mmebuddy.h>
20
21 /*
22 Standard MME driver entry-point for messages relating to MIDI output.
23 */
24 DWORD
25 APIENTRY
26 modMessage(
27 DWORD DeviceId,
28 DWORD Message,
29 DWORD PrivateHandle,
30 DWORD Parameter1,
31 DWORD Parameter2)
32 {
33 MMRESULT Result = MMSYSERR_NOTSUPPORTED;
34
35 AcquireEntrypointMutex(MIDI_OUT_DEVICE_TYPE);
36
37 SND_TRACE(L"modMessage - Message type %d\n", Message);
38
39 switch ( Message )
40 {
41 case MODM_GETNUMDEVS :
42 {
43 Result = GetSoundDeviceCount(MIDI_OUT_DEVICE_TYPE);
44 break;
45 }
46
47 case MODM_GETDEVCAPS :
48 {
49 Result = MmeGetSoundDeviceCapabilities(MIDI_OUT_DEVICE_TYPE,
50 DeviceId,
51 (PVOID) Parameter1,
52 Parameter2);
53 break;
54 }
55 }
56
57 SND_TRACE(L"modMessage returning MMRESULT %d\n", Result);
58
59 ReleaseEntrypointMutex(MIDI_OUT_DEVICE_TYPE);
60
61 return Result;
62 }