Added the "EpubFile" folder

Folder with implementation of text reading xml files
This commit is contained in:
Green(Kirill)
2020-06-30 17:57:45 +03:00
parent 9aad184fca
commit ef8a52575e
4 changed files with 524 additions and 0 deletions

File diff suppressed because one or more lines are too long

View File

@ -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 */

View 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

View File

@ -0,0 +1,6 @@
#include "../../../DesktopEditor/xml/include/xmlutils.h"
int main(int argc, char *argv[])
{
return 0;
}