mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
x2t - decrtypt Open Office Document
This commit is contained in:
@ -282,7 +282,10 @@ void CInflate::Init()
|
||||
{
|
||||
inflateInit(&m_internal->m_stream);
|
||||
}
|
||||
|
||||
void CInflate::Init2()
|
||||
{
|
||||
inflateInit2(&m_internal->m_stream,-MAX_WBITS);
|
||||
}
|
||||
int CInflate::Process(int flush)
|
||||
{
|
||||
return inflate(&m_internal->m_stream, flush);
|
||||
|
||||
@ -121,6 +121,7 @@ public:
|
||||
void ClearFuncs();
|
||||
|
||||
void Init();
|
||||
void Init2();
|
||||
int Process(int flush);
|
||||
void End();
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user