Signed-off-by: Zebediah Figura [email protected] --- dlls/strmbase/strmbase_private.h | 1 - 1 file changed, 1 deletion(-)
diff --git a/dlls/strmbase/strmbase_private.h b/dlls/strmbase/strmbase_private.h index 439ab9aefaf..06fbe62a425 100644 --- a/dlls/strmbase/strmbase_private.h +++ b/dlls/strmbase/strmbase_private.h @@ -31,7 +31,6 @@ #include "wine/heap.h" #include "wine/list.h" #include "wine/strmbase.h" -#include "wine/unicode.h"
/* Quality Control */ typedef struct QualityControlImpl {
Signed-off-by: Zebediah Figura [email protected] --- dlls/evr/Makefile.in | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/dlls/evr/Makefile.in b/dlls/evr/Makefile.in index dc7989e8359..677a85e110d 100644 --- a/dlls/evr/Makefile.in +++ b/dlls/evr/Makefile.in @@ -1,8 +1,17 @@ MODULE = evr.dll -IMPORTS = mfuuid strmiids strmbase uuid ole32 oleaut32 +IMPORTS = mfuuid strmiids uuid ole32 oleaut32 +PARENTSRC = ../strmbase
C_SRCS = \ + dispatch.c \ + enumpins.c \ evr.c \ - main.c + filter.c \ + main.c \ + mediatype.c \ + pin.c \ + pospass.c \ + qualitycontrol.c \ + renderer.c
IDL_SRCS = evr_classes.idl
Zebediah Figura [email protected] writes:
Signed-off-by: Zebediah Figura [email protected]
dlls/evr/Makefile.in | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-)
I think it would be better to do this for modules that won't be converted to PE right away, so that libstrmbase.a can also be built against msvcrt headers.
On 8/5/19 4:57 AM, Alexandre Julliard wrote:
Zebediah Figura [email protected] writes:
Signed-off-by: Zebediah Figura [email protected]
dlls/evr/Makefile.in | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-)
I think it would be better to do this for modules that won't be converted to PE right away, so that libstrmbase.a can also be built against msvcrt headers.
Sure, will do. This does, I think, mean that we have to convert amstream, evr, quartz, qedit, strmbase in a single step, but fortunately this is relatively simple.
Signed-off-by: Zebediah Figura [email protected] --- dlls/evr/Makefile.in | 2 ++ dlls/evr/evr.c | 1 - dlls/evr/main.c | 2 -- 3 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/dlls/evr/Makefile.in b/dlls/evr/Makefile.in index 677a85e110d..e605ce227cb 100644 --- a/dlls/evr/Makefile.in +++ b/dlls/evr/Makefile.in @@ -2,6 +2,8 @@ MODULE = evr.dll IMPORTS = mfuuid strmiids uuid ole32 oleaut32 PARENTSRC = ../strmbase
+EXTRADLLFLAGS = -mno-cygwin + C_SRCS = \ dispatch.c \ enumpins.c \ diff --git a/dlls/evr/evr.c b/dlls/evr/evr.c index b64b0468acb..655ca79b0d7 100644 --- a/dlls/evr/evr.c +++ b/dlls/evr/evr.c @@ -18,7 +18,6 @@
#define COBJMACROS
-#include "config.h" #include "wine/debug.h"
#include <stdio.h> diff --git a/dlls/evr/main.c b/dlls/evr/main.c index ba482073268..000ed7c55be 100644 --- a/dlls/evr/main.c +++ b/dlls/evr/main.c @@ -18,8 +18,6 @@
#define COBJMACROS
-#include "config.h" - #include <stdarg.h>
#include "windef.h"
Signed-off-by: Zebediah Figura [email protected] --- dlls/qedit/Makefile.in | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/dlls/qedit/Makefile.in b/dlls/qedit/Makefile.in index b47ee260ab7..60764d2633a 100644 --- a/dlls/qedit/Makefile.in +++ b/dlls/qedit/Makefile.in @@ -1,10 +1,19 @@ MODULE = qedit.dll -IMPORTS = strmiids strmbase uuid oleaut32 ole32 advapi32 +IMPORTS = strmiids uuid oleaut32 ole32 advapi32 +PARENTSRC = ../strmbase
C_SRCS = \ + dispatch.c \ + enumpins.c \ + filter.c \ main.c \ mediadet.c \ + mediatype.c \ nullrenderer.c \ + pin.c \ + pospass.c \ + qualitycontrol.c \ + renderer.c \ samplegrabber.c \ timeline.c
Signed-off-by: Zebediah Figura [email protected] --- dlls/qedit/Makefile.in | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dlls/qedit/Makefile.in b/dlls/qedit/Makefile.in index 60764d2633a..c5bf8f9cac8 100644 --- a/dlls/qedit/Makefile.in +++ b/dlls/qedit/Makefile.in @@ -2,6 +2,8 @@ MODULE = qedit.dll IMPORTS = strmiids uuid oleaut32 ole32 advapi32 PARENTSRC = ../strmbase
+EXTRADLLFLAGS = -mno-cygwin + C_SRCS = \ dispatch.c \ enumpins.c \