mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
13 lines
330 B
C++
13 lines
330 B
C++
#include "FontEmbedFlags10Atom.h"
|
|
|
|
using namespace PPT;
|
|
|
|
void CRecordFontEmbedFlags10Atom::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
|
|
{
|
|
m_oHeader = oHeader;
|
|
|
|
_UINT32 flags = StreamUtils::ReadDWORD(pStream);
|
|
m_fSubset = 0x1 & flags;
|
|
m_fSubsetOptionConfirmed = 0x2 & flags;
|
|
}
|