Commit 4dcb3ea3 authored by Rico Schüller's avatar Rico Schüller Committed by Alexandre Julliard

d3dx9: Make some functions inline.

parent c49f09d6
...@@ -102,12 +102,12 @@ static void skip_dword_unknown(const char **ptr, unsigned int count) ...@@ -102,12 +102,12 @@ static void skip_dword_unknown(const char **ptr, unsigned int count)
} }
} }
static struct d3dx_parameter *get_parameter_struct(D3DXHANDLE handle) static inline struct d3dx_parameter *get_parameter_struct(D3DXHANDLE handle)
{ {
return (struct d3dx_parameter *) handle; return (struct d3dx_parameter *) handle;
} }
static D3DXHANDLE get_parameter_handle(struct d3dx_parameter *parameter) static inline D3DXHANDLE get_parameter_handle(struct d3dx_parameter *parameter)
{ {
return (D3DXHANDLE) parameter; return (D3DXHANDLE) parameter;
} }
......
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