mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[MSDMO]
* 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:
parent
1c6e5a90d1
commit
23d5e232d6
4 changed files with 22 additions and 27 deletions
|
@ -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[] =
|
||||
|
|
|
@ -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.@)
|
||||
*
|
||||
|
|
19
reactos/dll/directx/wine/msdmo/precomp.h
Normal file
19
reactos/dll/directx/wine/msdmo/precomp.h
Normal 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_ */
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue