HRESULT IStream::Stat(STATSTG *Informations, DWORD Options);
Le résultat est rangé dans Informations.
#include <windows.h>
#include <winbase.h>
#include <ole2.h>
IStream *pIStream;
STATSTG Informations;
...
memset(&Informations, 0, sizeof(STATSTG));
if (pIStream->Stat(&Informations, STATFLAG_DEFAULT)!=S_OK)
{
...
}
...