mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[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:
parent
d0c50aeedf
commit
5738b8acbf
3 changed files with 12 additions and 3 deletions
2
reactos/lib/3rdparty/strmbase/dispatch.c
vendored
2
reactos/lib/3rdparty/strmbase/dispatch.c
vendored
|
@ -20,6 +20,8 @@
|
|||
|
||||
#include "strmbase_private.h"
|
||||
|
||||
#include <oleauto.h>
|
||||
|
||||
HRESULT WINAPI BaseDispatch_Init(BaseDispatch *This, REFIID riid)
|
||||
{
|
||||
HRESULT hr = E_FAIL;
|
||||
|
|
2
reactos/lib/3rdparty/strmbase/outputqueue.c
vendored
2
reactos/lib/3rdparty/strmbase/outputqueue.c
vendored
|
@ -20,6 +20,8 @@
|
|||
|
||||
#include "strmbase_private.h"
|
||||
|
||||
#include <wine/list.h>
|
||||
|
||||
enum {SAMPLE_PACKET, EOS_PACKET};
|
||||
|
||||
typedef struct tagQueuedEvent {
|
||||
|
|
11
reactos/lib/3rdparty/strmbase/strmbase_private.h
vendored
11
reactos/lib/3rdparty/strmbase/strmbase_private.h
vendored
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue