2008-12-31 08:02:56 +00:00
|
|
|
/*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_DWMAPI_H
|
|
|
|
#define __WINE_DWMAPI_H
|
|
|
|
|
|
|
|
#include "wtypes.h"
|
|
|
|
#include "uxtheme.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DWMAPI
|
|
|
|
# define DWMAPI STDAPI
|
|
|
|
# define DWMAPI_(type) STDAPI_(type)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
DECLARE_HANDLE(HTHUMBNAIL);
|
|
|
|
|
2009-11-13 11:47:11 +00:00
|
|
|
typedef struct _MilMatrix3x2D
|
|
|
|
{
|
|
|
|
DOUBLE S_11;
|
|
|
|
DOUBLE S_12;
|
|
|
|
DOUBLE S_21;
|
|
|
|
DOUBLE S_22;
|
|
|
|
DOUBLE DX;
|
|
|
|
DOUBLE DY;
|
|
|
|
} MilMatrix3x2D;
|
|
|
|
|
Finish the Wine sync. These components are not just rc file changes
atl, comctl32, comdlg32, dwmapi, fusion, gdiplus, jscript, mpr, mshtml, msi, msimtf, msxml3, ole32, oleaut32, riched20, shdocvw, shlwapi, urlmon, usp10, version and windowscodecs
Seems to build and boot. /me hides
svn path=/trunk/; revision=48273
2010-07-26 02:26:04 +00:00
|
|
|
#define DWM_BB_ENABLE 0x00000001
|
|
|
|
#define DWM_BB_BLURREGION 0x00000002
|
|
|
|
#define DWM_BB_TRANSITIONONMAXIMIZED 0x00000004
|
|
|
|
|
|
|
|
typedef struct _DWM_BLURBEHIND
|
|
|
|
{
|
|
|
|
DWORD dwFlags;
|
|
|
|
BOOL fEnable;
|
|
|
|
HRGN hRgnBlur;
|
|
|
|
BOOL fTransitionOnMaximized;
|
|
|
|
} DWM_BLURBEHIND, *PDWM_BLURBEHIND;
|
|
|
|
|
|
|
|
DWMAPI DwmEnableBlurBehindWindow(HWND, const DWM_BLURBEHIND *);
|
2008-12-31 08:02:56 +00:00
|
|
|
DWMAPI DwmEnableComposition(UINT);
|
2009-11-13 11:47:11 +00:00
|
|
|
DWMAPI DwmEnableMMCSS(BOOL);
|
2008-12-31 08:02:56 +00:00
|
|
|
DWMAPI DwmExtendFrameIntoClientArea(HWND,const MARGINS*);
|
|
|
|
DWMAPI DwmGetColorizationColor(DWORD*,BOOL);
|
|
|
|
DWMAPI DwmIsCompositionEnabled(BOOL*);
|
|
|
|
DWMAPI DwmSetWindowAttribute(HWND, DWORD, LPCVOID, DWORD);
|
|
|
|
DWMAPI DwmUnregisterThumbnail(HTHUMBNAIL);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __WINE_DWMAPI_H */
|