[PATCH] mfuuid: Add library

Fabian Maurer dark.shadow4 at web.de
Mon Sep 18 18:40:09 CDT 2017


Signed-off-by: Fabian Maurer <dark.shadow4 at web.de>
---
 configure               |  1 +
 configure.ac            |  1 +
 dlls/mfuuid/Makefile.in |  4 ++++
 dlls/mfuuid/mfuuid.c    | 28 ++++++++++++++++++++++++++++
 4 files changed, 34 insertions(+)
 create mode 100644 dlls/mfuuid/Makefile.in
 create mode 100644 dlls/mfuuid/mfuuid.c

diff --git a/configure b/configure
index 66437786a5..644dd4c506 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 f5a617c1c3..54ae4253a7 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 0000000000..5fbb522782
--- /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 0000000000..f30dca0464
--- /dev/null
+++ b/dlls/mfuuid/mfuuid.c
@@ -0,0 +1,28 @@
+/*
+ * 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 "mfidl.h"
-- 
2.14.1




More information about the wine-patches mailing list