riched20: Sign-compare warnings fix.
[wine/multimedia.git] / dlls / winecoreaudio.drv / coremidi.c
blobabe845431ffe3e770b19e6fe86808bef8dd99a3a
1 /*
2 * Wine Midi driver for Mac OS X
4 * Copyright 2006 Emmanuel Maillard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "config.h"
23 #include "wine/debug.h"
25 WINE_DEFAULT_DEBUG_CHANNEL(midi);
27 #ifdef HAVE_COREAUDIO_COREAUDIO_H
28 #include <CoreMIDI/CoreMIDI.h>
29 #include <mach/mach_time.h>
31 #include "coremidi.h"
33 MIDIClientRef CoreMIDI_CreateClient(CFStringRef name)
35 MIDIClientRef client = NULL;
37 if (MIDIClientCreate(name, NULL /* FIXME use notify proc */, NULL, &client) != noErr)
38 return NULL;
40 return client;
43 void CoreMIDI_GetObjectName(MIDIObjectRef obj, char *name, int size)
45 OSStatus err = noErr;
46 CFStringRef cfname;
48 err = MIDIObjectGetStringProperty(obj, kMIDIPropertyName, &cfname);
49 if (err == noErr)
51 CFStringGetCString(cfname, name, size, kCFStringEncodingASCII);
52 CFRelease(cfname);
57 * CoreMIDI IO threaded callback,
58 * we can't call Wine debug channels, critical section or anything using NtCurrentTeb here.
60 void MIDIIn_ReadProc(const MIDIPacketList *pktlist, void *refCon, void *connRefCon)
62 unsigned int i;
63 MIDIMessage msg;
65 MIDIPacket *packet = (MIDIPacket *)pktlist->packet;
66 for (i = 0; i < pktlist->numPackets; ++i) {
67 msg.devID = *((UInt16 *)connRefCon);
68 msg.length = packet->length;
69 memcpy(msg.data, packet->data, sizeof(packet->data));
71 MIDIIn_SendMessage(msg);
73 packet = MIDIPacketNext(packet);
77 void MIDIOut_Send(MIDIPortRef port, MIDIEndpointRef dest, UInt8 *buffer, unsigned length)
79 Byte packetBuff[512];
80 MIDIPacketList *packetList = (MIDIPacketList *)packetBuff;
82 MIDIPacket *packet = MIDIPacketListInit(packetList);
84 packet = MIDIPacketListAdd(packetList, sizeof(packetBuff), packet, mach_absolute_time(), length, buffer);
85 if (packet)
86 MIDISend(port, dest, packetList);
88 #endif /* HAVE_COREAUDIO_COREAUDIO_H */