Re: Problem related to BYTE*
Please show some code that you are having problem with.
As Joe wrote, your question is not very clear...
Thanks,
Giovanni
"Harish Kumar Dixit" <harishdixit1@gmail.com> ha scritto nel messaggio
news:3fd1987b-0fab-4a49-885f-765ac385d6d3@u36g2000prf.googlegroups.com...
Hello friends,
I have one API of IWMHeaderInfo3 interface. That API takes (BYTE* pT)
as one of the output parameter and returns some value in this
parameter. But for a one special case the value of this parameter set
to blank.
API:
virtual HRESULT STDMETHODCALLTYPE GetAttributeByIndexEx(
/* [in] */ WORD wStreamNum,
/* [in] */ WORD wIndex,
/* [size_is][out] */ LPWSTR pwszName,
/* [out][in] */ WORD *pwNameLen,
/* [out] */ WMT_ATTR_DATATYPE *pType,
/* [out] */ WORD *pwLangIndex,
/* [size_is][out] */ BYTE *pValue,
/* [out][in] */ DWORD *pdwDataLength) = 0;
When i seen in the memory location pointed by pT variable the value is
" J]jZ;z(1 )??Qaqe>M".
first chracter is space(32).
Since in memory window i can see this value. But why the API is
setting this variable to blank.
Thanks on advance.