Module: wine Branch: master Commit: f6c037cee38c66813aba01440483292fd95ebc08 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f6c037cee38c66813aba014404...
Author: Francois Gouget fgouget@free.fr Date: Fri Dec 9 11:57:32 2011 +0100
include: Add a couple of missing include directives in dshow.h.
---
include/dshow.h | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/include/dshow.h b/include/dshow.h index 6513140..3451609 100644 --- a/include/dshow.h +++ b/include/dshow.h @@ -32,7 +32,10 @@ #include <olectl.h> #include <ddraw.h> #include <mmsystem.h> -/* FIXME: #include <strsafe.h>*/ +#ifndef NO_DSHOW_STRSAFE +#define NO_SHLWAPI_STRFCNS +#include <strsafe.h> +#endif
#ifndef NUMELMS #define NUMELMS(array) (sizeof(array)/sizeof((array)[0])) @@ -41,7 +44,7 @@ #include <strmif.h> #include <amvideo.h> #ifdef DSHOW_USE_AMAUDIO -/* FIXME: #include <amaudio.h>*/ +#include <amaudio.h> #endif #include <control.h> #include <evcode.h>