* Create a main header and move some inclusions to it.
* Set the default debugging channel globally through the main header.
CORE-7716

svn path=/trunk/; revision=61724
This commit is contained in:
Amine Khaldi 2014-01-20 12:34:50 +00:00
parent 1c6e5a90d1
commit 23d5e232d6
4 changed files with 22 additions and 27 deletions

View file

@ -17,25 +17,13 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#include "precomp.h"
#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <winuser.h>
//#include "winerror.h"
#include <winreg.h>
#include <objbase.h>
#include <wine/unicode.h>
#include <wine/debug.h>
//#include "initguid.h"
#include <dmo.h>
WINE_DEFAULT_DEBUG_CHANNEL(msdmo);
#define MSDMO_MAJOR_VERSION 6
static const WCHAR szDMORootKey[] =

View file

@ -16,23 +16,11 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include "precomp.h"
#define COBJMACROS
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#include <windef.h>
#include <winbase.h>
#include <objbase.h>
#include <mediaobj.h>
#include <dmort.h>
#include <wine/debug.h>
WINE_DEFAULT_DEBUG_CHANNEL(msdmo);
/***********************************************************************
* MoCreateMediaType (MSDMO.@)
*

View file

@ -0,0 +1,19 @@
#ifndef _MSDMO_PCH_
#define _MSDMO_PCH_
#include <stdarg.h>
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#define COBJMACROS
#include <windef.h>
#include <winbase.h>
#include <objbase.h>
#include <wine/debug.h>
WINE_DEFAULT_DEBUG_CHANNEL(msdmo);
#endif /* _MSDMO_PCH_ */

View file

@ -23,4 +23,4 @@
#define WINE_PRODUCTVERSION 6,5,1,900
#define WINE_PRODUCTVERSION_STR "6.5"
#include "wine/wine_common_ver.rc"
#include <wine/wine_common_ver.rc>