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