示例#1
0
HRESULT _IFUNC BOleInProcServer::Load(IStorage* pStg)
{
  LPPERSISTSTORAGE pPersistCache;
  if (SUCCEEDED(pDefHandler->QueryInterface(IID_IPersistStorage, &(LPVOID) pPersistCache))) {
    pPersistCache->Load(pStg);
    pPersistCache->Release();
  }
  return BOleSite::Load(pStg);
}