mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 03:42:47 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@61947 954022d7-b5bf-4e40-9824-e11837661b57
22 lines
583 B
C++
22 lines
583 B
C++
#ifndef _BUILD_APPLICATIONFONTSWORKER_H_
|
|
#define _BUILD_APPLICATIONFONTSWORKER_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class CApplicationFontsWorker
|
|
{
|
|
public:
|
|
std::vector<std::wstring> m_arAdditionalFolders;
|
|
|
|
public:
|
|
CApplicationFontsWorker();
|
|
~CApplicationFontsWorker();
|
|
|
|
std::vector<std::wstring> CheckApplication(bool bIsNeedSystemFonts,
|
|
unsigned char* pDataSrc, unsigned int nLenSrc,
|
|
unsigned char*& pDataDst, unsigned int& nLenDst);
|
|
};
|
|
|
|
#endif // _BUILD_APPLICATIONFONTSWORKER_H_
|