Commit f3af04a8 authored by Roderick Colenbrander's avatar Roderick Colenbrander Committed by Alexandre Julliard

wined3d: Use UINT instead of uint.

parent e77da5ef
...@@ -1890,7 +1890,7 @@ static HRESULT WINAPI IWineD3DDeviceImpl_Init3D(IWineD3DDevice *iface, WINED3DPR ...@@ -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) { static HRESULT WINAPI IWineD3DDeviceImpl_Uninit3D(IWineD3DDevice *iface, D3DCB_DESTROYSURFACEFN D3DCB_DestroyDepthStencilSurface, D3DCB_DESTROYSWAPCHAINFN D3DCB_DestroySwapChain) {
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *) iface; IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *) iface;
int sampler; int sampler;
uint i; UINT i;
TRACE("(%p)\n", This); TRACE("(%p)\n", This);
if(!This->d3d_initialized) return WINED3DERR_INVALIDCALL; if(!This->d3d_initialized) return WINED3DERR_INVALIDCALL;
......
...@@ -680,7 +680,7 @@ struct IWineD3DDeviceImpl ...@@ -680,7 +680,7 @@ struct IWineD3DDeviceImpl
WINED3DDEVTYPE devType; WINED3DDEVTYPE devType;
IWineD3DSwapChain **swapchains; IWineD3DSwapChain **swapchains;
uint NumberOfSwapChains; UINT NumberOfSwapChains;
ResourceList *resources; /* a linked list to track resources created by the device */ ResourceList *resources; /* a linked list to track resources created by the device */
......
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