Lines Matching defs:This
7 * This library is free software; you can redistribute it and/or
12 * This library is distributed in the hope that it will be useful,
61 IWineD3DClipperImpl *This = (IWineD3DClipperImpl *)iface;
62 ULONG ref = InterlockedIncrement(&This->ref);
64 TRACE("(%p)->() incrementing from %u.\n", This, ref - 1);
71 IWineD3DClipperImpl *This = (IWineD3DClipperImpl *)iface;
72 ULONG ref = InterlockedDecrement(&This->ref);
74 TRACE("(%p)->() decrementing from %u.\n", This, ref + 1);
78 HeapFree(GetProcessHeap(), 0, This);
86 IWineD3DClipperImpl *This = (IWineD3DClipperImpl *)iface;
87 TRACE("(%p)->(%p)\n", This, Parent);
89 *Parent = This->Parent;
96 IWineD3DClipperImpl *This = (IWineD3DClipperImpl *)iface;
98 TRACE("(%p)->(0x%08x,%p)\n", This, Flags, hWnd);
105 This->hWnd = hWnd;
112 IWineD3DClipperImpl *This = (IWineD3DClipperImpl *)iface;
113 TRACE("(%p,%p,%p,%p)\n", This, Rect, ClipList, Size);
115 if (This->hWnd)
117 HDC hDC = GetDCEx(This->hWnd, NULL, DCX_WINDOW);
140 ReleaseDC(This->hWnd, hDC);
148 FIXME("(%p,%p,%p,%p),stub!\n",This,Rect,ClipList,Size);
166 IWineD3DClipperImpl *This = (IWineD3DClipperImpl *)iface;
167 TRACE("(%p)->(%p)\n", This, hwnd);
169 *hwnd = This->hWnd;