mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 07:23:34 +08:00
11 lines
298 B
C++
11 lines
298 B
C++
#include "TmsfTimeStruct.h"
|
|
|
|
|
|
void PPT::TmsfTimeStruct::ReadFromStream(POLE::Stream *pStream)
|
|
{
|
|
m_nTrack = StreamUtils::ReadBYTE(pStream);
|
|
m_nMinute = StreamUtils::ReadBYTE(pStream);
|
|
m_nSecond = StreamUtils::ReadBYTE(pStream);
|
|
m_nFrame = StreamUtils::ReadBYTE(pStream);
|
|
}
|