Module: wine Branch: master Commit: 15a60db06e68e21afa3b299fda40a0cfb7b8f889 URL: http://source.winehq.org/git/wine.git/?a=commit;h=15a60db06e68e21afa3b299fda...
Author: Christian Costa titan.costa@gmail.com Date: Mon Apr 23 21:26:24 2012 +0200
include: Add dmksctrl.h with definition of KSDATAFORMAT_SUBTYPE_DIRECTMUSIC needed by DirectMusic.
---
include/Makefile.in | 1 + include/dmksctrl.h | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/include/Makefile.in b/include/Makefile.in index a83e56d..e55b548 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -239,6 +239,7 @@ SRCDIR_INCLUDES = \ dls2.h \ dmdls.h \ dmerror.h \ + dmksctrl.h \ dmo.h \ dmoreg.h \ dmort.h \ diff --git a/include/dmksctrl.h b/include/dmksctrl.h new file mode 100644 index 0000000..47142fd --- /dev/null +++ b/include/dmksctrl.h @@ -0,0 +1,31 @@ +/* + * Definition of IKsControl + * + * Copyright (C) 2012 Christian Costa + * + * 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 + */ + +#ifndef _DMKSCTRL_ +#define _DMKSCTRL_ + +#ifndef _KSMEDIA_ + +DEFINE_GUID(KSDATAFORMAT_SUBTYPE_MIDI, 0x1d262760, 0xe957, 0x11cf, 0xa5, 0xd6, 0x28, 0xdb, 0x04, 0xc1, 0x00, 0x00); +DEFINE_GUID(KSDATAFORMAT_SUBTYPE_DIRECTMUSIC, 0x1a82f8bc, 0x3f8b, 0x11d2, 0xb7, 0x74, 0x00, 0x60, 0x08, 0x33, 0x16, 0xc1); + +#endif + +#endif /* _DMKSCTRL_ */