Skip to content
Snippets Groups Projects
Commit 18e0e8c4 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard
Browse files

d3dx9_36: Make get_parameter_{handle,struct}() static.

parent 25a31a49
Branches
Tags
No related merge requests found
......@@ -91,12 +91,12 @@ static void skip_dword_unknown(const char **ptr, unsigned int count)
}
}
struct d3dx_parameter *get_parameter_struct(D3DXHANDLE handle)
static struct d3dx_parameter *get_parameter_struct(D3DXHANDLE handle)
{
return (struct d3dx_parameter *) handle;
}
D3DXHANDLE get_parameter_handle(struct d3dx_parameter *parameter)
static D3DXHANDLE get_parameter_handle(struct d3dx_parameter *parameter)
{
return (D3DXHANDLE) parameter;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment