mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
10 lines
229 B
C++
10 lines
229 B
C++
#include "CString.h"
|
|
|
|
using namespace PPT;
|
|
|
|
void CRecordCString::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
|
|
{
|
|
m_oHeader = oHeader;
|
|
m_strText = StreamUtils::ReadStringW(pStream, m_oHeader.RecLen / 2);
|
|
}
|