Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Instructs the object to load its persistent data from memory.
Syntax
HRESULT retVal = object.Load(pvMem, cbSize);
Parameters
pvMem [in]
Type: voidThe address of the memory from which the object can read up to cbSize bytes of its data. The object must not read past the address (BYTE*)((BYTE *)pvMem+cbSize).
cbSize [in]
Type: unsigned longThe amount of memory available at pvMem from which the object can read its data.
Remarks
Any object that implements IPersistMemory has some information to load persistently; therefore, E_NOTIMPL is not a valid return code.