Commit 38b4364c authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

ddrawex: Get rid of the IDirectDrawImpl typedef.

parent 3d452ed9
......@@ -51,10 +51,7 @@ HRESULT WINAPI ddrawex_factory_CreateDirectDraw(IDirectDrawFactory *iface,
void DDSD_to_DDSD2(const DDSURFACEDESC *in, DDSURFACEDESC2 *out) DECLSPEC_HIDDEN;
void DDSD2_to_DDSD(const DDSURFACEDESC2 *in, DDSURFACEDESC *out) DECLSPEC_HIDDEN;
/******************************************************************************
* IDirectDraw wrapper implementation
******************************************************************************/
typedef struct
struct ddrawex
{
IDirectDraw IDirectDraw_iface;
IDirectDraw2 IDirectDraw2_iface;
......@@ -64,7 +61,7 @@ typedef struct
/* The interface we're forwarding to */
IDirectDraw4 *parent;
} IDirectDrawImpl;
};
IDirectDraw4 *dd_get_outer(IDirectDraw4 *inner) DECLSPEC_HIDDEN;
IDirectDraw4 *dd_get_inner(IDirectDraw4 *outer) DECLSPEC_HIDDEN;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment