Commit 592b347c authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

d3d10core: Avoid LPSTR.

parent d2d0c42b
......@@ -1610,8 +1610,8 @@ static void STDMETHODCALLTYPE d3d10_device_CheckCounterInfo(ID3D10Device *iface,
}
static HRESULT STDMETHODCALLTYPE d3d10_device_CheckCounter(ID3D10Device *iface,
const D3D10_COUNTER_DESC *desc, D3D10_COUNTER_TYPE *type, UINT *active_counters, LPSTR name,
UINT *name_length, LPSTR units, UINT *units_length, LPSTR description, UINT *description_length)
const D3D10_COUNTER_DESC *desc, D3D10_COUNTER_TYPE *type, UINT *active_counters, char *name,
UINT *name_length, char *units, UINT *units_length, char *description, UINT *description_length)
{
FIXME("iface %p, desc %p, type %p, active_counters %p, name %p, name_length %p,\n"
"\tunits %p, units_length %p, description %p, description_length %p stub!\n",
......
......@@ -1559,11 +1559,11 @@ interface ID3D10Device : IUnknown
[in] const D3D10_COUNTER_DESC *pDesc,
[out] D3D10_COUNTER_TYPE *pType,
[out] UINT *pActiveCounters,
[out] LPSTR szName,
[out] char *name,
[in, out] UINT *pNameLength,
[out] LPSTR szUnits,
[out] char *units,
[in, out] UINT *pUnitsLength,
[out] LPSTR szDescription,
[out] char *description,
[in, out] UINT *pDescriptionLength);
UINT GetCreationFlags();
HRESULT OpenSharedResource(
......
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