Module: wine Branch: master Commit: 95633f368133bd51fcd777e0487f915e62a3d39f URL: http://source.winehq.org/git/wine.git/?a=commit;h=95633f368133bd51fcd777e048...
Author: Fabian Maurer dark.shadow4@web.de Date: Tue Sep 19 01:40:09 2017 +0200
mfuuid: Add library.
Signed-off-by: Fabian Maurer dark.shadow4@web.de Signed-off-by: Alexandre Julliard julliard@winehq.org
---
configure | 1 + configure.ac | 1 + dlls/mfuuid/Makefile.in | 4 ++++ dlls/mfuuid/mfuuid.c | 30 ++++++++++++++++++++++++++++++ 4 files changed, 36 insertions(+)
diff --git a/configure b/configure index 6643778..644dd4c 100755 --- a/configure +++ b/configure @@ -18444,6 +18444,7 @@ wine_fn_config_dll mf3216 enable_mf3216 wine_fn_config_dll mfplat enable_mfplat implib wine_fn_config_test dlls/mfplat/tests mfplat_test wine_fn_config_dll mfreadwrite enable_mfreadwrite +wine_fn_config_lib mfuuid wine_fn_config_dll mgmtapi enable_mgmtapi wine_fn_config_dll midimap enable_midimap wine_fn_config_dll mlang enable_mlang clean,implib diff --git a/configure.ac b/configure.ac index f5a617c..54ae425 100644 --- a/configure.ac +++ b/configure.ac @@ -3233,6 +3233,7 @@ WINE_CONFIG_DLL(mf3216) WINE_CONFIG_DLL(mfplat,,[implib]) WINE_CONFIG_TEST(dlls/mfplat/tests) WINE_CONFIG_DLL(mfreadwrite) +WINE_CONFIG_LIB(mfuuid) WINE_CONFIG_DLL(mgmtapi) WINE_CONFIG_DLL(midimap) WINE_CONFIG_DLL(mlang,,[clean,implib]) diff --git a/dlls/mfuuid/Makefile.in b/dlls/mfuuid/Makefile.in new file mode 100644 index 0000000..5fbb522 --- /dev/null +++ b/dlls/mfuuid/Makefile.in @@ -0,0 +1,4 @@ +MODULE = libmfuuid.a + +C_SRCS = \ + mfuuid.c diff --git a/dlls/mfuuid/mfuuid.c b/dlls/mfuuid/mfuuid.c new file mode 100644 index 0000000..f9b1a8a --- /dev/null +++ b/dlls/mfuuid/mfuuid.c @@ -0,0 +1,30 @@ +/* + * GUID definitions + * + * Copyright 2017 Fabian Maurer + * + * 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 + */ + +/* Don't define those GUIDs here */ +#include "propsys.h" +#include "strmif.h" +#include "mediaobj.h" + +#include "initguid.h" + +#include "mfapi.h" +#include "mfidl.h" +#include "mfreadwrite.h"