Module: wine
Branch: master
Commit: 1fc00f17696ca361447ed71979c12f75279abcd5
URL: https://source.winehq.org/git/wine.git/?a=commit;h=1fc00f17696ca361447ed719…
Author: Zebediah Figura <z.figura12(a)gmail.com>
Date: Mon May 7 21:17:42 2018 -0500
dmoguids: Add library.
Signed-off-by: Zebediah Figura <z.figura12(a)gmail.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
configure | 2 ++
configure.ac | 1 +
dlls/dmoguids/Makefile.in | 4 ++++
dlls/dmoguids/dmoguids.c | 27 +++++++++++++++++++++++++++
4 files changed, 34 insertions(+)
diff --git a/configure b/configure
index a2adb44..50badb7 100755
--- a/configure
+++ b/configure
@@ -1213,6 +1213,7 @@ enable_dmband
enable_dmcompos
enable_dmime
enable_dmloader
+enable_dmoguids
enable_dmscript
enable_dmstyle
enable_dmsynth
@@ -18573,6 +18574,7 @@ wine_fn_config_makefile dlls/dmime enable_dmime
wine_fn_config_makefile dlls/dmime/tests enable_tests
wine_fn_config_makefile dlls/dmloader enable_dmloader
wine_fn_config_makefile dlls/dmloader/tests enable_tests
+wine_fn_config_makefile dlls/dmoguids enable_dmoguids
wine_fn_config_makefile dlls/dmscript enable_dmscript
wine_fn_config_makefile dlls/dmscript/tests enable_tests
wine_fn_config_makefile dlls/dmstyle enable_dmstyle
diff --git a/configure.ac b/configure.ac
index 6064081..c5e222d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3194,6 +3194,7 @@ WINE_CONFIG_MAKEFILE(dlls/dmime)
WINE_CONFIG_MAKEFILE(dlls/dmime/tests)
WINE_CONFIG_MAKEFILE(dlls/dmloader)
WINE_CONFIG_MAKEFILE(dlls/dmloader/tests)
+WINE_CONFIG_MAKEFILE(dlls/dmoguids)
WINE_CONFIG_MAKEFILE(dlls/dmscript)
WINE_CONFIG_MAKEFILE(dlls/dmscript/tests)
WINE_CONFIG_MAKEFILE(dlls/dmstyle)
diff --git a/dlls/dmoguids/Makefile.in b/dlls/dmoguids/Makefile.in
new file mode 100644
index 0000000..db38e57
--- /dev/null
+++ b/dlls/dmoguids/Makefile.in
@@ -0,0 +1,4 @@
+MODULE = libdmoguids.a
+
+C_SRCS = \
+ dmoguids.c
diff --git a/dlls/dmoguids/dmoguids.c b/dlls/dmoguids/dmoguids.c
new file mode 100644
index 0000000..b764c1f
--- /dev/null
+++ b/dlls/dmoguids/dmoguids.c
@@ -0,0 +1,27 @@
+/*
+ * GUID definitions
+ *
+ * Copyright 2018 Zebediah Figura
+ *
+ * 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 "strmif.h"
+
+#include "initguid.h"
+
+#include "mediaobj.h"
+#include "dmoreg.h"
Module: tools
Branch: master
Commit: 91152c30e149c9cc43f0dba1525219418003f2b6
URL: https://source.winehq.org/git/tools.git/?a=commit;h=91152c30e149c9cc43f0dba…
Author: Francois Gouget <fgouget(a)codeweavers.com>
Date: Tue May 8 13:04:03 2018 +0200
testbot: Move the job scheduler to WineTestBot::Engine::Scheduler.
The job scheduler is specific to the TestBot engine so ScheduleJobs()
should not be in the Jobs package which is meant to be used by any
process that deals with jobs.
The scheduler could even be part of Engine.pl but since it's pretty
self-contained it makes more sense to put it in its own package, hence
WineTestBot::Engine:Scheduler.
Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
testbot/bin/Engine.pl | 1 +
testbot/lib/WineTestBot/Engine/Scheduler.pm | 978 ++++++++++++++++++++++++++++
testbot/lib/WineTestBot/Jobs.pm | 943 +--------------------------
3 files changed, 980 insertions(+), 942 deletions(-)
Diff: https://source.winehq.org/git/tools.git/?a=commitdiff;h=91152c30e149c9cc43f…