d3dx9: Make some functions inline.

This commit is contained in:
Rico Schüller 2011-04-12 21:25:03 +02:00 committed by Alexandre Julliard
parent c49f09d6f8
commit 4dcb3ea325
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
static D3DXHANDLE get_parameter_handle(struct d3dx_parameter *parameter)
static inline D3DXHANDLE get_parameter_handle(struct d3dx_parameter *parameter)
{
return (D3DXHANDLE) parameter;
}