Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
onlyoffice_core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
onlyoffice_core
Commits
38e24953
Commit
38e24953
authored
Jun 01, 2016
by
Oleg Korshul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.net - сборка билдера
parent
9f60ce0a
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
423 additions
and
0 deletions
+423
-0
DesktopEditor/doctrenderer/docbuilder.net/AssemblyInfo.cpp
DesktopEditor/doctrenderer/docbuilder.net/AssemblyInfo.cpp
+38
-0
DesktopEditor/doctrenderer/docbuilder.net/Stdafx.cpp
DesktopEditor/doctrenderer/docbuilder.net/Stdafx.cpp
+5
-0
DesktopEditor/doctrenderer/docbuilder.net/Stdafx.h
DesktopEditor/doctrenderer/docbuilder.net/Stdafx.h
+7
-0
DesktopEditor/doctrenderer/docbuilder.net/app.ico
DesktopEditor/doctrenderer/docbuilder.net/app.ico
+0
-0
DesktopEditor/doctrenderer/docbuilder.net/app.rc
DesktopEditor/doctrenderer/docbuilder.net/app.rc
+0
-0
DesktopEditor/doctrenderer/docbuilder.net/docbuilder.net.cpp
DesktopEditor/doctrenderer/docbuilder.net/docbuilder.net.cpp
+91
-0
DesktopEditor/doctrenderer/docbuilder.net/docbuilder.net.h
DesktopEditor/doctrenderer/docbuilder.net/docbuilder.net.h
+32
-0
DesktopEditor/doctrenderer/docbuilder.net/docbuilder.net.sln
DesktopEditor/doctrenderer/docbuilder.net/docbuilder.net.sln
+28
-0
DesktopEditor/doctrenderer/docbuilder.net/docbuilder.net.vcxproj
...Editor/doctrenderer/docbuilder.net/docbuilder.net.vcxproj
+170
-0
DesktopEditor/doctrenderer/docbuilder.net/docbuilder.net.vcxproj.filters
...octrenderer/docbuilder.net/docbuilder.net.vcxproj.filters
+49
-0
DesktopEditor/doctrenderer/docbuilder.net/resource.h
DesktopEditor/doctrenderer/docbuilder.net/resource.h
+3
-0
No files found.
DesktopEditor/doctrenderer/docbuilder.net/AssemblyInfo.cpp
0 → 100644
View file @
38e24953
#include "stdafx.h"
using
namespace
System
;
using
namespace
System
::
Reflection
;
using
namespace
System
::
Runtime
::
CompilerServices
;
using
namespace
System
::
Runtime
::
InteropServices
;
using
namespace
System
::
Security
::
Permissions
;
//
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
//
[
assembly
:
AssemblyTitleAttribute
(
L"docbuilder.net"
)];
[
assembly
:
AssemblyDescriptionAttribute
(
L""
)];
[
assembly
:
AssemblyConfigurationAttribute
(
L""
)];
[
assembly
:
AssemblyCompanyAttribute
(
L"Ascensio System SIA"
)];
[
assembly
:
AssemblyProductAttribute
(
L"docbuilder.net"
)];
[
assembly
:
AssemblyCopyrightAttribute
(
L"Copyright (c) 2016"
)];
[
assembly
:
AssemblyTrademarkAttribute
(
L"Ascensio System SIA"
)];
[
assembly
:
AssemblyCultureAttribute
(
L""
)];
//
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the value or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[
assembly
:
AssemblyVersionAttribute
(
"1.0.*"
)];
[
assembly
:
ComVisible
(
false
)];
[
assembly
:
CLSCompliantAttribute
(
true
)];
\ No newline at end of file
DesktopEditor/doctrenderer/docbuilder.net/Stdafx.cpp
0 → 100644
View file @
38e24953
// stdafx.cpp : source file that includes just the standard includes
// docbuilder.h.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
DesktopEditor/doctrenderer/docbuilder.net/Stdafx.h
0 → 100644
View file @
38e24953
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently,
// but are changed infrequently
#pragma once
DesktopEditor/doctrenderer/docbuilder.net/app.ico
0 → 100644
View file @
38e24953
10.7 KB
DesktopEditor/doctrenderer/docbuilder.net/app.rc
0 → 100644
View file @
38e24953
B
// Microsoft Visual C++ generated resource script.
DesktopEditor/doctrenderer/docbuilder.net/docbuilder.net.cpp
0 → 100644
View file @
38e24953
// This is the main DLL file.
#include "stdafx.h"
#include "docbuilder.net.h"
#include "../docbuilder.h"
#ifdef _WIN64
#pragma comment(lib, "../../../build/lib/win_64/doctrenderer.lib")
#else
#pragma comment(lib, "../../../build/lib/win_32/doctrenderer.lib")
#endif
namespace
docbuilder_net
{
static
wchar_t
*
StringToStdString
(
String
^
param
)
{
return
(
wchar_t
*
)
System
::
Runtime
::
InteropServices
::
Marshal
::
StringToHGlobalUni
(
param
).
ToPointer
();
}
ref
class
CWrapper_Private
{
public:
NSDoctRenderer
::
CDocBuilder
*
m_pBuilder
;
CWrapper_Private
(
bool
bIsCheckSystemFonts
)
{
m_pBuilder
=
new
NSDoctRenderer
::
CDocBuilder
(
bIsCheckSystemFonts
);
}
~
CWrapper_Private
()
{
delete
m_pBuilder
;
}
};
CWrapper
::
CWrapper
(
bool
bIsCheckSystemFonts
)
{
m_pInternal
=
gcnew
CWrapper_Private
(
bIsCheckSystemFonts
);
}
CWrapper
::~
CWrapper
()
{
delete
m_pInternal
;
}
bool
CWrapper
::
OpenFile
(
String
^
path
,
String
^
params
)
{
return
m_pInternal
->
m_pBuilder
->
OpenFile
(
StringToStdString
(
path
),
StringToStdString
(
params
));
}
bool
CWrapper
::
CreateFile
(
int
type
)
{
return
m_pInternal
->
m_pBuilder
->
CreateFile
(
type
);
}
void
CWrapper
::
SetTmpFolder
(
String
^
folder
)
{
m_pInternal
->
m_pBuilder
->
SetTmpFolder
(
StringToStdString
(
folder
));
}
bool
CWrapper
::
SaveFile
(
int
type
,
String
^
path
)
{
return
m_pInternal
->
m_pBuilder
->
SaveFile
(
type
,
StringToStdString
(
path
));
}
void
CWrapper
::
CloseFile
()
{
m_pInternal
->
m_pBuilder
->
CloseFile
();
}
bool
CWrapper
::
ExecuteCommand
(
String
^
command
)
{
return
m_pInternal
->
m_pBuilder
->
ExecuteCommand
(
StringToStdString
(
command
));
}
bool
CWrapper
::
Run
(
String
^
path
)
{
return
m_pInternal
->
m_pBuilder
->
Run
(
StringToStdString
(
path
));
}
bool
CWrapper
::
RunText
(
String
^
text
)
{
return
m_pInternal
->
m_pBuilder
->
RunTextW
(
StringToStdString
(
text
));
}
void
CWrapper
::
Initialize
()
{
NSDoctRenderer
::
CDocBuilder
::
Initialize
();
}
void
CWrapper
::
Destroy
()
{
NSDoctRenderer
::
CDocBuilder
::
Dispose
();
}
}
DesktopEditor/doctrenderer/docbuilder.net/docbuilder.net.h
0 → 100644
View file @
38e24953
// docbuilder.net.h
#pragma once
using
namespace
System
;
namespace
docbuilder_net
{
ref
class
CWrapper_Private
;
public
ref
class
CWrapper
{
public:
CWrapper
(
bool
bIsCheckSystemFonts
);
~
CWrapper
();
bool
OpenFile
(
String
^
path
,
String
^
params
);
bool
CreateFile
(
int
type
);
void
SetTmpFolder
(
String
^
folder
);
bool
SaveFile
(
int
type
,
String
^
path
);
void
CloseFile
();
bool
ExecuteCommand
(
String
^
command
);
bool
Run
(
String
^
path
);
bool
RunText
(
String
^
text_commands
);
static
void
Initialize
();
static
void
Destroy
();
private:
CWrapper_Private
^
m_pInternal
;
};
}
DesktopEditor/doctrenderer/docbuilder.net/docbuilder.net.sln
0 → 100644
View file @
38e24953
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "docbuilder.net", "docbuilder.net.vcxproj", "{10124551-28B8-4CA0-8FBA-420CF9602CF3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Debug|x64 = Debug|x64
Release|Win32 = Release|Win32
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{10124551-28B8-4CA0-8FBA-420CF9602CF3}.Debug|Win32.ActiveCfg = Debug|Win32
{10124551-28B8-4CA0-8FBA-420CF9602CF3}.Debug|Win32.Build.0 = Debug|Win32
{10124551-28B8-4CA0-8FBA-420CF9602CF3}.Debug|x64.ActiveCfg = Debug|x64
{10124551-28B8-4CA0-8FBA-420CF9602CF3}.Debug|x64.Build.0 = Debug|x64
{10124551-28B8-4CA0-8FBA-420CF9602CF3}.Release|Win32.ActiveCfg = Release|Win32
{10124551-28B8-4CA0-8FBA-420CF9602CF3}.Release|Win32.Build.0 = Release|Win32
{10124551-28B8-4CA0-8FBA-420CF9602CF3}.Release|x64.ActiveCfg = Release|x64
{10124551-28B8-4CA0-8FBA-420CF9602CF3}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
DesktopEditor/doctrenderer/docbuilder.net/docbuilder.net.vcxproj
0 → 100644
View file @
38e24953
<?xml version="1.0" encoding="utf-8"?>
<Project
DefaultTargets=
"Build"
ToolsVersion=
"12.0"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<ItemGroup
Label=
"ProjectConfigurations"
>
<ProjectConfiguration
Include=
"Debug|Win32"
>
<Configuration>
Debug
</Configuration>
<Platform>
Win32
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Debug|x64"
>
<Configuration>
Debug
</Configuration>
<Platform>
x64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|Win32"
>
<Configuration>
Release
</Configuration>
<Platform>
Win32
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|x64"
>
<Configuration>
Release
</Configuration>
<Platform>
x64
</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup
Label=
"Globals"
>
<ProjectGuid>
{10124551-28B8-4CA0-8FBA-420CF9602CF3}
</ProjectGuid>
<TargetFrameworkVersion>
v4.5
</TargetFrameworkVersion>
<Keyword>
ManagedCProj
</Keyword>
<RootNamespace>
doctrendererwrapper
</RootNamespace>
<ProjectName>
docbuilder.net
</ProjectName>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.Default.props"
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
DynamicLibrary
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v120
</PlatformToolset>
<CLRSupport>
true
</CLRSupport>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
Label=
"Configuration"
>
<ConfigurationType>
DynamicLibrary
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v120
</PlatformToolset>
<CLRSupport>
true
</CLRSupport>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
DynamicLibrary
</ConfigurationType>
<UseDebugLibraries>
false
</UseDebugLibraries>
<PlatformToolset>
v120
</PlatformToolset>
<CLRSupport>
true
</CLRSupport>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
Label=
"Configuration"
>
<ConfigurationType>
DynamicLibrary
</ConfigurationType>
<UseDebugLibraries>
false
</UseDebugLibraries>
<PlatformToolset>
v120
</PlatformToolset>
<CLRSupport>
true
</CLRSupport>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.props"
/>
<ImportGroup
Label=
"ExtensionSettings"
>
</ImportGroup>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<ImportGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
Label=
"PropertySheets"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<ImportGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
Label=
"PropertySheets"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<PropertyGroup
Label=
"UserMacros"
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<LinkIncremental>
true
</LinkIncremental>
<OutDir>
$(SolutionDir)\bin\$(Platform)\$(Configuration)
</OutDir>
<IntDir>
$(Platform)\$(Configuration)
</IntDir>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<LinkIncremental>
true
</LinkIncremental>
<OutDir>
$(SolutionDir)\bin\$(Platform)\$(Configuration)
</OutDir>
<IntDir>
$(Platform)\$(Configuration)
</IntDir>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<LinkIncremental>
false
</LinkIncremental>
<OutDir>
$(SolutionDir)\bin\$(Platform)\$(Configuration)
</OutDir>
<IntDir>
$(Platform)\$(Configuration)
</IntDir>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
<LinkIncremental>
false
</LinkIncremental>
<OutDir>
$(SolutionDir)\bin\$(Platform)\$(Configuration)
</OutDir>
<IntDir>
$(Platform)\$(Configuration)
</IntDir>
</PropertyGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<Optimization>
Disabled
</Optimization>
<PreprocessorDefinitions>
WIN32;_DEBUG;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PrecompiledHeader>
Use
</PrecompiledHeader>
</ClCompile>
<Link>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
<AdditionalDependencies
/>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<Optimization>
Disabled
</Optimization>
<PreprocessorDefinitions>
WIN32;_DEBUG;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PrecompiledHeader>
Use
</PrecompiledHeader>
</ClCompile>
<Link>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
<AdditionalDependencies>
</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<PreprocessorDefinitions>
WIN32;NDEBUG;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PrecompiledHeader>
Use
</PrecompiledHeader>
</ClCompile>
<Link>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
<AdditionalDependencies
/>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<PreprocessorDefinitions>
WIN32;NDEBUG;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PrecompiledHeader>
Use
</PrecompiledHeader>
</ClCompile>
<Link>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
<AdditionalDependencies>
</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<Reference
Include=
"System"
/>
<Reference
Include=
"System.Data"
/>
<Reference
Include=
"System.Xml"
/>
</ItemGroup>
<ItemGroup>
<ClInclude
Include=
"docbuilder.net.h"
/>
<ClInclude
Include=
"resource.h"
/>
<ClInclude
Include=
"Stdafx.h"
/>
</ItemGroup>
<ItemGroup>
<ClCompile
Include=
"AssemblyInfo.cpp"
/>
<ClCompile
Include=
"docbuilder.net.cpp"
/>
<ClCompile
Include=
"Stdafx.cpp"
>
<PrecompiledHeader
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
Create
</PrecompiledHeader>
<PrecompiledHeader
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
Create
</PrecompiledHeader>
<PrecompiledHeader
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
Create
</PrecompiledHeader>
<PrecompiledHeader
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
Create
</PrecompiledHeader>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile
Include=
"app.rc"
/>
</ItemGroup>
<ItemGroup>
<Image
Include=
"app.ico"
/>
</ItemGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
<ImportGroup
Label=
"ExtensionTargets"
>
</ImportGroup>
</Project>
\ No newline at end of file
DesktopEditor/doctrenderer/docbuilder.net/docbuilder.net.vcxproj.filters
0 → 100644
View file @
38e24953
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"4.0"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<ItemGroup>
<Filter
Include=
"Source Files"
>
<UniqueIdentifier>
{4FC737F1-C7A5-4376-A066-2A32D752A2FF}
</UniqueIdentifier>
<Extensions>
cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
</Extensions>
</Filter>
<Filter
Include=
"Header Files"
>
<UniqueIdentifier>
{93995380-89BD-4b04-88EB-625FBE52EBFB}
</UniqueIdentifier>
<Extensions>
h;hh;hpp;hxx;hm;inl;inc;xsd
</Extensions>
</Filter>
<Filter
Include=
"Resource Files"
>
<UniqueIdentifier>
{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
</UniqueIdentifier>
<Extensions>
rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<ClInclude
Include=
"Stdafx.h"
>
<Filter>
Header Files
</Filter>
</ClInclude>
<ClInclude
Include=
"resource.h"
>
<Filter>
Header Files
</Filter>
</ClInclude>
<ClInclude
Include=
"docbuilder.net.h"
>
<Filter>
Header Files
</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile
Include=
"AssemblyInfo.cpp"
>
<Filter>
Source Files
</Filter>
</ClCompile>
<ClCompile
Include=
"Stdafx.cpp"
>
<Filter>
Source Files
</Filter>
</ClCompile>
<ClCompile
Include=
"docbuilder.net.cpp"
>
<Filter>
Source Files
</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile
Include=
"app.rc"
>
<Filter>
Resource Files
</Filter>
</ResourceCompile>
</ItemGroup>
<ItemGroup>
<Image
Include=
"app.ico"
>
<Filter>
Resource Files
</Filter>
</Image>
</ItemGroup>
</Project>
\ No newline at end of file
DesktopEditor/doctrenderer/docbuilder.net/resource.h
0 → 100644
View file @
38e24953
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by app.rc
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment