d3d10core: Avoid LPSTR.

This commit is contained in:
Henri Verbeet 2013-09-17 09:22:39 +02:00 committed by Alexandre Julliard
parent d2d0c42b6d
commit 592b347c79
2 changed files with 5 additions and 5 deletions

View File

@ -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",

View File

@ -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(