Add a log function
[xy_vsfilter.git] / include / dx / d3drmwin.h
bloba7853192c9c9131af1cff3f3b3a77e11929468c2
1 /*==========================================================================;
3 * Copyright (c) Microsoft Corporation. All rights reserved.
5 * File: d3drm.h
6 * Content: Direct3DRM include file
8 ***************************************************************************/
10 #ifndef __D3DRMWIN_H__
11 #define __D3DRMWIN_H__
13 #ifndef WIN32
14 #define WIN32
15 #endif
17 #include "d3drm.h"
19 #include "ddraw.h"
20 #include "d3d.h"
23 * GUIDS used by Direct3DRM Windows interface
25 DEFINE_GUID(IID_IDirect3DRMWinDevice, 0xc5016cc0, 0xd273, 0x11ce, 0xac, 0x48, 0x0, 0x0, 0xc0, 0x38, 0x25, 0xa1);
27 WIN_TYPES(IDirect3DRMWinDevice, DIRECT3DRMWINDEVICE);
29 #undef INTERFACE
30 #define INTERFACE IDirect3DRMWinDevice
32 DECLARE_INTERFACE_(IDirect3DRMWinDevice, IDirect3DRMObject)
34 IUNKNOWN_METHODS(PURE);
35 IDIRECT3DRMOBJECT_METHODS(PURE);
38 * IDirect3DRMWinDevice methods
41 /* Repaint the window with the last frame which was rendered. */
42 STDMETHOD(HandlePaint)(THIS_ HDC hdc) PURE;
44 /* Respond to a WM_ACTIVATE message. */
45 STDMETHOD(HandleActivate)(THIS_ WORD wparam) PURE;
49 #endif