STDMETHODIMP?
-
Hi! I've seen in some code examples this word in head of functions, but I don't know what's its meaning... Any idea? Thank you :)
It's a macro, that expands to
HRESULT __stdcall
.HRESULT
is the standard return value of COM methods and__stdcall
specifies calling convention (for details see MSDN). Robert-Antonio "I launched Norton Commander and saw, drive C: on the left, drive C: on the right...Damn, why I need two drives C:??? So I formatted one..." -
It's a macro, that expands to
HRESULT __stdcall
.HRESULT
is the standard return value of COM methods and__stdcall
specifies calling convention (for details see MSDN). Robert-Antonio "I launched Norton Commander and saw, drive C: on the left, drive C: on the right...Damn, why I need two drives C:??? So I formatted one..."