[STRMBASE]

* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61962
This commit is contained in:
Amine Khaldi 2014-02-03 17:28:51 +00:00
parent d0c50aeedf
commit 5738b8acbf
3 changed files with 12 additions and 3 deletions

View file

@ -20,6 +20,8 @@
#include "strmbase_private.h"
#include <oleauto.h>
HRESULT WINAPI BaseDispatch_Init(BaseDispatch *This, REFIID riid)
{
HRESULT hr = E_FAIL;

View file

@ -20,6 +20,8 @@
#include "strmbase_private.h"
#include <wine/list.h>
enum {SAMPLE_PACKET, EOS_PACKET};
typedef struct tagQueuedEvent {

View file

@ -18,24 +18,29 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <config.h>
#include <wine/config.h>
#include <assert.h>
#include <stdarg.h>
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#define WIN32_LEAN_AND_MEAN
#define COBJMACROS
#define NONAMELESSSTRUCT
#define NONAMELESSUNION
#include <windef.h>
#include <winbase.h>
#include <objbase.h>
#include <dshow.h>
#include <wine/list.h>
#include <wine/debug.h>
#include <wine/strmbase.h>
#include <wine/unicode.h>
#include <wine/debug.h>
WINE_DEFAULT_DEBUG_CHANNEL(strmbase);
/* Quality Control */