Brendan Shanks : wbemuuid: Add library.

Alexandre Julliard julliard at winehq.org
Tue Feb 4 15:33:22 CST 2020


Module: wine
Branch: master
Commit: 829dff0ee770f720ee90976faac3cbd6bb2afc59
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=829dff0ee770f720ee90976faac3cbd6bb2afc59

Author: Brendan Shanks <bshanks at codeweavers.com>
Date:   Tue Feb  4 12:11:44 2020 -0800

wbemuuid: Add library.

Signed-off-by: Brendan Shanks <bshanks at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 configure                 |  2 ++
 configure.ac              |  1 +
 dlls/wbemuuid/Makefile.in |  4 ++++
 dlls/wbemuuid/wbemuuid.c  | 35 +++++++++++++++++++++++++++++++++++
 4 files changed, 42 insertions(+)

diff --git a/configure b/configure
index c7e8f5ef1f..80235dd995 100755
--- a/configure
+++ b/configure
@@ -1617,6 +1617,7 @@ enable_vssapi
 enable_vulkan_1
 enable_wbemdisp
 enable_wbemprox
+enable_wbemuuid
 enable_wdscore
 enable_webservices
 enable_wer
@@ -20930,6 +20931,7 @@ wine_fn_config_makefile dlls/wbemdisp enable_wbemdisp
 wine_fn_config_makefile dlls/wbemdisp/tests enable_tests
 wine_fn_config_makefile dlls/wbemprox enable_wbemprox
 wine_fn_config_makefile dlls/wbemprox/tests enable_tests
+wine_fn_config_makefile dlls/wbemuuid enable_wbemuuid
 wine_fn_config_makefile dlls/wdscore enable_wdscore
 wine_fn_config_makefile dlls/webservices enable_webservices
 wine_fn_config_makefile dlls/webservices/tests enable_tests
diff --git a/configure.ac b/configure.ac
index f9ca95ce49..40374210bb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3739,6 +3739,7 @@ WINE_CONFIG_MAKEFILE(dlls/wbemdisp)
 WINE_CONFIG_MAKEFILE(dlls/wbemdisp/tests)
 WINE_CONFIG_MAKEFILE(dlls/wbemprox)
 WINE_CONFIG_MAKEFILE(dlls/wbemprox/tests)
+WINE_CONFIG_MAKEFILE(dlls/wbemuuid)
 WINE_CONFIG_MAKEFILE(dlls/wdscore)
 WINE_CONFIG_MAKEFILE(dlls/webservices)
 WINE_CONFIG_MAKEFILE(dlls/webservices/tests)
diff --git a/dlls/wbemuuid/Makefile.in b/dlls/wbemuuid/Makefile.in
new file mode 100644
index 0000000000..449a0e68a8
--- /dev/null
+++ b/dlls/wbemuuid/Makefile.in
@@ -0,0 +1,4 @@
+MODULE    = libwbemuuid.a
+
+C_SRCS = \
+	wbemuuid.c
diff --git a/dlls/wbemuuid/wbemuuid.c b/dlls/wbemuuid/wbemuuid.c
new file mode 100644
index 0000000000..8fc3314d8d
--- /dev/null
+++ b/dlls/wbemuuid/wbemuuid.c
@@ -0,0 +1,35 @@
+/*
+ * Copyright 2020 Brendan Shanks for CodeWeavers
+ *
+ * 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
+ */
+
+#include <stdarg.h>
+
+#include "windef.h"
+#include "winbase.h"
+#include "wingdi.h"
+#include "winuser.h"
+
+#include "dispex.h"
+#include "objbase.h"
+#include "oleauto.h"
+#include "olectl.h"
+
+#include "initguid.h"
+
+#include "wbemcli.h"
+#include "wbemprov.h"
+#include "wbemdisp.h"




More information about the wine-cvs mailing list