Module: wine Branch: master Commit: f3af04a8be2f8c1e23ce3760d0a834c0329002e6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f3af04a8be2f8c1e23ce3760d0...
Author: Roderick Colenbrander thunderbird2k@gmx.net Date: Mon Aug 6 16:38:00 2007 +0200
wined3d: Use UINT instead of uint.
---
dlls/wined3d/device.c | 2 +- dlls/wined3d/wined3d_private.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c index 0759606..65c5382 100644 --- a/dlls/wined3d/device.c +++ b/dlls/wined3d/device.c @@ -1890,7 +1890,7 @@ static HRESULT WINAPI IWineD3DDeviceImpl_Init3D(IWineD3DDevice *iface, WINED3DPR static HRESULT WINAPI IWineD3DDeviceImpl_Uninit3D(IWineD3DDevice *iface, D3DCB_DESTROYSURFACEFN D3DCB_DestroyDepthStencilSurface, D3DCB_DESTROYSWAPCHAINFN D3DCB_DestroySwapChain) { IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *) iface; int sampler; - uint i; + UINT i; TRACE("(%p)\n", This);
if(!This->d3d_initialized) return WINED3DERR_INVALIDCALL; diff --git a/dlls/wined3d/wined3d_private.h b/dlls/wined3d/wined3d_private.h index 22c18ca..548c337 100644 --- a/dlls/wined3d/wined3d_private.h +++ b/dlls/wined3d/wined3d_private.h @@ -680,7 +680,7 @@ struct IWineD3DDeviceImpl WINED3DDEVTYPE devType;
IWineD3DSwapChain **swapchains; - uint NumberOfSwapChains; + UINT NumberOfSwapChains;
ResourceList *resources; /* a linked list to track resources created by the device */