mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 11:47:00 +08:00
Added the "EpubFile" folder
Folder with implementation of text reading xml files
This commit is contained in:
File diff suppressed because one or more lines are too long
@ -0,0 +1,35 @@
|
||||
#include <windows.h>
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 2,5,565,0
|
||||
PRODUCTVERSION 2,5,565,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS VS_FF_DEBUG
|
||||
#else
|
||||
FILEFLAGS 0x0L
|
||||
#endif
|
||||
FILEOS VOS__WINDOWS32
|
||||
FILETYPE VFT_DLL
|
||||
FILESUBTYPE 0x0L
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Ascensio System SIA\0"
|
||||
VALUE "FileDescription", "\0"
|
||||
VALUE "FileVersion", "2.5.565.0\0"
|
||||
VALUE "LegalCopyright", "Copyright (C) Ascensio System SIA 2020. All rights reserved\0"
|
||||
VALUE "OriginalFilename", "test.exe\0"
|
||||
VALUE "ProductName", "test\0"
|
||||
VALUE "ProductVersion", "2.5.565.0\0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x0409, 1200
|
||||
END
|
||||
END
|
||||
/* End of Version info */
|
||||
|
||||
15
EpubFile/tests/ReadingXml/Reader.pro
Normal file
15
EpubFile/tests/ReadingXml/Reader.pro
Normal file
@ -0,0 +1,15 @@
|
||||
QT -= core
|
||||
QT -= gui
|
||||
|
||||
TARGET = test
|
||||
TEMPLATE = app
|
||||
CONFIG += console
|
||||
CONFIG -= app_bundle
|
||||
|
||||
CORE_ROOT_DIR = $$PWD/../../..
|
||||
PWD_ROOT_DIR = $$PWD
|
||||
include($$CORE_ROOT_DIR/Common/base.pri)
|
||||
|
||||
ADD_DEPENDENCY(kernel)
|
||||
|
||||
SOURCES += main.cpp
|
||||
6
EpubFile/tests/ReadingXml/main.cpp
Normal file
6
EpubFile/tests/ReadingXml/main.cpp
Normal file
@ -0,0 +1,6 @@
|
||||
#include "../../../DesktopEditor/xml/include/xmlutils.h"
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user