mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 02:44:13 +08:00
15 lines
426 B
C++
15 lines
426 B
C++
#include "ExOleEmbedAtom.h"
|
|
|
|
using namespace PPT;
|
|
|
|
void CRecordExOleEmbedAtom::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
|
|
{
|
|
m_oHeader = oHeader;
|
|
|
|
m_nColorFollow = StreamUtils::ReadLONG(pStream);
|
|
m_nCantLockServer = StreamUtils::ReadBYTE(pStream);
|
|
m_nNoSizeToServer = StreamUtils::ReadBYTE(pStream);
|
|
m_nIsTable = StreamUtils::ReadBYTE(pStream);
|
|
StreamUtils::StreamSkip(1, pStream);
|
|
}
|