Skip to content

Commit 4d50a6f

Browse files
authored
initial commit - lib is working
1 parent f047a77 commit 4d50a6f

38 files changed

+1460
-1
lines changed

LICENSE

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Jakub Parez
3+
Copyright (c) 2019 Jakub Parez
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -19,3 +19,4 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
22+

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# NTP Client (Windows Dll/Lib + console App)
2+
3+
TBA

img/ntp_client_console.png

56.7 KB
Loading

lib/vcredist_x64.exe

14.3 MB
Binary file not shown.

lib/vcredist_x86.exe

13.7 MB
Binary file not shown.

lib/x64/concrt140.dll

309 KB
Binary file not shown.

lib/x64/msvcp140.dll

576 KB
Binary file not shown.

lib/x64/msvcp140_1.dll

31 KB
Binary file not shown.

lib/x64/msvcp140_2.dll

188 KB
Binary file not shown.

lib/x64/msvcp140_codecvt_ids.dll

26.8 KB
Binary file not shown.

lib/x64/vccorlib140.dll

329 KB
Binary file not shown.

lib/x64/vcruntime140.dll

98.5 KB
Binary file not shown.

lib/x64/vcruntime140_1.dll

43.3 KB
Binary file not shown.

lib/x86/concrt140.dll

244 KB
Binary file not shown.

lib/x86/msvcp140.dll

443 KB
Binary file not shown.

lib/x86/msvcp140_1.dll

28.8 KB
Binary file not shown.

lib/x86/msvcp140_2.dll

170 KB
Binary file not shown.

lib/x86/msvcp140_codecvt_ids.dll

25.8 KB
Binary file not shown.

lib/x86/vccorlib140.dll

268 KB
Binary file not shown.

lib/x86/vcruntime140.dll

81.3 KB
Binary file not shown.

src/ctu_vin_ntp_client.sln

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29926.136
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ntp_client_dll", "ntp_client_dll\ntp_client_dll.vcxproj", "{D76F068D-A4A1-4BB0-941F-B5C9FBAFF372}"
7+
EndProject
8+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ntp_client_lib", "ntp_client_lib\ntp_client_lib.vcxproj", "{6E21FA4A-474A-46D1-9C88-D4F70041F4F8}"
9+
EndProject
10+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ntp_client_shared", "ntp_client_shared\ntp_client_shared.vcxitems", "{CE1844D1-F6F4-40D9-85B6-530A3857450C}"
11+
EndProject
12+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ntp_client_test", "ntp_client_test\ntp_client_test.vcxproj", "{F8635A97-994B-4240-8495-DFA5A15DF321}"
13+
EndProject
14+
Global
15+
GlobalSection(SharedMSBuildProjectFiles) = preSolution
16+
ntp_client_shared\ntp_client_shared.vcxitems*{6e21fa4a-474a-46d1-9c88-d4f70041f4f8}*SharedItemsImports = 4
17+
ntp_client_shared\ntp_client_shared.vcxitems*{ce1844d1-f6f4-40d9-85b6-530a3857450c}*SharedItemsImports = 9
18+
ntp_client_shared\ntp_client_shared.vcxitems*{d76f068d-a4a1-4bb0-941f-b5c9fbaff372}*SharedItemsImports = 4
19+
EndGlobalSection
20+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
21+
Debug|x64 = Debug|x64
22+
Debug|x86 = Debug|x86
23+
Release|x64 = Release|x64
24+
Release|x86 = Release|x86
25+
EndGlobalSection
26+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
27+
{D76F068D-A4A1-4BB0-941F-B5C9FBAFF372}.Debug|x64.ActiveCfg = Debug|x64
28+
{D76F068D-A4A1-4BB0-941F-B5C9FBAFF372}.Debug|x64.Build.0 = Debug|x64
29+
{D76F068D-A4A1-4BB0-941F-B5C9FBAFF372}.Debug|x86.ActiveCfg = Debug|Win32
30+
{D76F068D-A4A1-4BB0-941F-B5C9FBAFF372}.Debug|x86.Build.0 = Debug|Win32
31+
{D76F068D-A4A1-4BB0-941F-B5C9FBAFF372}.Release|x64.ActiveCfg = Release|x64
32+
{D76F068D-A4A1-4BB0-941F-B5C9FBAFF372}.Release|x64.Build.0 = Release|x64
33+
{D76F068D-A4A1-4BB0-941F-B5C9FBAFF372}.Release|x86.ActiveCfg = Release|Win32
34+
{D76F068D-A4A1-4BB0-941F-B5C9FBAFF372}.Release|x86.Build.0 = Release|Win32
35+
{6E21FA4A-474A-46D1-9C88-D4F70041F4F8}.Debug|x64.ActiveCfg = Debug|x64
36+
{6E21FA4A-474A-46D1-9C88-D4F70041F4F8}.Debug|x64.Build.0 = Debug|x64
37+
{6E21FA4A-474A-46D1-9C88-D4F70041F4F8}.Debug|x86.ActiveCfg = Debug|Win32
38+
{6E21FA4A-474A-46D1-9C88-D4F70041F4F8}.Debug|x86.Build.0 = Debug|Win32
39+
{6E21FA4A-474A-46D1-9C88-D4F70041F4F8}.Release|x64.ActiveCfg = Release|x64
40+
{6E21FA4A-474A-46D1-9C88-D4F70041F4F8}.Release|x64.Build.0 = Release|x64
41+
{6E21FA4A-474A-46D1-9C88-D4F70041F4F8}.Release|x86.ActiveCfg = Release|Win32
42+
{6E21FA4A-474A-46D1-9C88-D4F70041F4F8}.Release|x86.Build.0 = Release|Win32
43+
{F8635A97-994B-4240-8495-DFA5A15DF321}.Debug|x64.ActiveCfg = Debug|x64
44+
{F8635A97-994B-4240-8495-DFA5A15DF321}.Debug|x64.Build.0 = Debug|x64
45+
{F8635A97-994B-4240-8495-DFA5A15DF321}.Debug|x86.ActiveCfg = Debug|Win32
46+
{F8635A97-994B-4240-8495-DFA5A15DF321}.Debug|x86.Build.0 = Debug|Win32
47+
{F8635A97-994B-4240-8495-DFA5A15DF321}.Release|x64.ActiveCfg = Release|x64
48+
{F8635A97-994B-4240-8495-DFA5A15DF321}.Release|x64.Build.0 = Release|x64
49+
{F8635A97-994B-4240-8495-DFA5A15DF321}.Release|x86.ActiveCfg = Release|Win32
50+
{F8635A97-994B-4240-8495-DFA5A15DF321}.Release|x86.Build.0 = Release|Win32
51+
EndGlobalSection
52+
GlobalSection(SolutionProperties) = preSolution
53+
HideSolutionNode = FALSE
54+
EndGlobalSection
55+
GlobalSection(ExtensibilityGlobals) = postSolution
56+
SolutionGuid = {339BC5EC-6D32-463A-B783-8639EFA3518A}
57+
EndGlobalSection
58+
EndGlobal

src/ntp_client_dll/ntp_client_dll.aps

2.52 KB
Binary file not shown.

src/ntp_client_dll/ntp_client_dll.rc

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
// Microsoft Visual C++ generated resource script.
2+
//
3+
#include "resource.h"
4+
5+
#define APSTUDIO_READONLY_SYMBOLS
6+
/////////////////////////////////////////////////////////////////////////////
7+
//
8+
// Generated from the TEXTINCLUDE 2 resource.
9+
//
10+
#include "winres.h"
11+
12+
/////////////////////////////////////////////////////////////////////////////
13+
#undef APSTUDIO_READONLY_SYMBOLS
14+
15+
/////////////////////////////////////////////////////////////////////////////
16+
// Czech (Czech Republic) resources
17+
18+
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_CSY)
19+
LANGUAGE LANG_CZECH, SUBLANG_DEFAULT
20+
#pragma code_page(1250)
21+
22+
#ifdef APSTUDIO_INVOKED
23+
/////////////////////////////////////////////////////////////////////////////
24+
//
25+
// TEXTINCLUDE
26+
//
27+
28+
1 TEXTINCLUDE
29+
BEGIN
30+
"resource.h\0"
31+
END
32+
33+
2 TEXTINCLUDE
34+
BEGIN
35+
"#include ""winres.h""\r\n"
36+
"\0"
37+
END
38+
39+
3 TEXTINCLUDE
40+
BEGIN
41+
"\r\n"
42+
"\0"
43+
END
44+
45+
#endif // APSTUDIO_INVOKED
46+
47+
48+
/////////////////////////////////////////////////////////////////////////////
49+
//
50+
// Version
51+
//
52+
53+
VS_VERSION_INFO VERSIONINFO
54+
FILEVERSION 0,0,0,1
55+
PRODUCTVERSION 0,0,0,1
56+
FILEFLAGSMASK 0x3fL
57+
#ifdef _DEBUG
58+
FILEFLAGS 0x1L
59+
#else
60+
FILEFLAGS 0x0L
61+
#endif
62+
FILEOS 0x40004L
63+
FILETYPE 0x2L
64+
FILESUBTYPE 0x0L
65+
BEGIN
66+
BLOCK "StringFileInfo"
67+
BEGIN
68+
BLOCK "040504b0"
69+
BEGIN
70+
VALUE "CompanyName", "CTU/VIN"
71+
VALUE "FileDescription", "NTP client"
72+
VALUE "FileVersion", "0.0.0.1"
73+
VALUE "InternalName", "ntp_client.dll"
74+
VALUE "LegalCopyright", "Jakub Parez (C) 2020"
75+
VALUE "OriginalFilename", "ntp_client.dll"
76+
VALUE "ProductName", "NTP client"
77+
VALUE "ProductVersion", "0.0.0.1"
78+
END
79+
END
80+
BLOCK "VarFileInfo"
81+
BEGIN
82+
VALUE "Translation", 0x405, 1200
83+
END
84+
END
85+
86+
#endif // Czech (Czech Republic) resources
87+
/////////////////////////////////////////////////////////////////////////////
88+
89+
90+
91+
#ifndef APSTUDIO_INVOKED
92+
/////////////////////////////////////////////////////////////////////////////
93+
//
94+
// Generated from the TEXTINCLUDE 3 resource.
95+
//
96+
97+
98+
/////////////////////////////////////////////////////////////////////////////
99+
#endif // not APSTUDIO_INVOKED
100+
+173
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,173 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Release|Win32">
9+
<Configuration>Release</Configuration>
10+
<Platform>Win32</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Debug|x64">
13+
<Configuration>Debug</Configuration>
14+
<Platform>x64</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|x64">
17+
<Configuration>Release</Configuration>
18+
<Platform>x64</Platform>
19+
</ProjectConfiguration>
20+
</ItemGroup>
21+
<ItemGroup>
22+
<ClInclude Include="resource.h" />
23+
</ItemGroup>
24+
<ItemGroup>
25+
<ResourceCompile Include="ntp_client_dll.rc" />
26+
</ItemGroup>
27+
<PropertyGroup Label="Globals">
28+
<VCProjectVersion>16.0</VCProjectVersion>
29+
<ProjectGuid>{D76F068D-A4A1-4BB0-941F-B5C9FBAFF372}</ProjectGuid>
30+
<Keyword>Win32Proj</Keyword>
31+
<RootNamespace>ntpclient</RootNamespace>
32+
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
33+
<ProjectName>ntp_client_dll</ProjectName>
34+
</PropertyGroup>
35+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
36+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
37+
<ConfigurationType>DynamicLibrary</ConfigurationType>
38+
<UseDebugLibraries>true</UseDebugLibraries>
39+
<PlatformToolset>v142</PlatformToolset>
40+
<CharacterSet>MultiByte</CharacterSet>
41+
</PropertyGroup>
42+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
43+
<ConfigurationType>DynamicLibrary</ConfigurationType>
44+
<UseDebugLibraries>false</UseDebugLibraries>
45+
<PlatformToolset>v142</PlatformToolset>
46+
<WholeProgramOptimization>true</WholeProgramOptimization>
47+
<CharacterSet>MultiByte</CharacterSet>
48+
</PropertyGroup>
49+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
50+
<ConfigurationType>DynamicLibrary</ConfigurationType>
51+
<UseDebugLibraries>true</UseDebugLibraries>
52+
<PlatformToolset>v142</PlatformToolset>
53+
<CharacterSet>Unicode</CharacterSet>
54+
</PropertyGroup>
55+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
56+
<ConfigurationType>DynamicLibrary</ConfigurationType>
57+
<UseDebugLibraries>false</UseDebugLibraries>
58+
<PlatformToolset>v142</PlatformToolset>
59+
<WholeProgramOptimization>true</WholeProgramOptimization>
60+
<CharacterSet>Unicode</CharacterSet>
61+
</PropertyGroup>
62+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
63+
<ImportGroup Label="ExtensionSettings">
64+
</ImportGroup>
65+
<ImportGroup Label="Shared">
66+
<Import Project="..\ntp_client_shared\ntp_client_shared.vcxitems" Label="Shared" />
67+
</ImportGroup>
68+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
69+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
70+
</ImportGroup>
71+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
72+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
73+
</ImportGroup>
74+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
75+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
76+
</ImportGroup>
77+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
78+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
79+
</ImportGroup>
80+
<PropertyGroup Label="UserMacros" />
81+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
82+
<LinkIncremental>true</LinkIncremental>
83+
<TargetName>ntp_client</TargetName>
84+
</PropertyGroup>
85+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
86+
<LinkIncremental>true</LinkIncremental>
87+
</PropertyGroup>
88+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
89+
<LinkIncremental>false</LinkIncremental>
90+
<TargetName>ntp_client</TargetName>
91+
</PropertyGroup>
92+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
93+
<LinkIncremental>false</LinkIncremental>
94+
</PropertyGroup>
95+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
96+
<ClCompile>
97+
<PrecompiledHeader>
98+
</PrecompiledHeader>
99+
<WarningLevel>Level4</WarningLevel>
100+
<SDLCheck>true</SDLCheck>
101+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;NTPCLIENT_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
102+
<ConformanceMode>true</ConformanceMode>
103+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
104+
<AdditionalIncludeDirectories>..\ntp_client_shared\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
105+
</ClCompile>
106+
<Link>
107+
<SubSystem>Windows</SubSystem>
108+
<GenerateDebugInformation>true</GenerateDebugInformation>
109+
<EnableUAC>false</EnableUAC>
110+
<AdditionalDependencies>Ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
111+
<AssemblyDebug>true</AssemblyDebug>
112+
</Link>
113+
</ItemDefinitionGroup>
114+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
115+
<ClCompile>
116+
<PrecompiledHeader>Use</PrecompiledHeader>
117+
<WarningLevel>Level3</WarningLevel>
118+
<SDLCheck>true</SDLCheck>
119+
<PreprocessorDefinitions>_DEBUG;NTPCLIENT_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
120+
<ConformanceMode>true</ConformanceMode>
121+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
122+
</ClCompile>
123+
<Link>
124+
<SubSystem>Windows</SubSystem>
125+
<GenerateDebugInformation>true</GenerateDebugInformation>
126+
<EnableUAC>false</EnableUAC>
127+
</Link>
128+
</ItemDefinitionGroup>
129+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
130+
<ClCompile>
131+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
132+
<WarningLevel>Level3</WarningLevel>
133+
<FunctionLevelLinking>true</FunctionLevelLinking>
134+
<IntrinsicFunctions>true</IntrinsicFunctions>
135+
<SDLCheck>true</SDLCheck>
136+
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;NTPCLIENT_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
137+
<ConformanceMode>true</ConformanceMode>
138+
<PrecompiledHeaderFile>
139+
</PrecompiledHeaderFile>
140+
<AdditionalIncludeDirectories>..\ntp_client_shared\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
141+
</ClCompile>
142+
<Link>
143+
<SubSystem>Windows</SubSystem>
144+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
145+
<OptimizeReferences>true</OptimizeReferences>
146+
<GenerateDebugInformation>true</GenerateDebugInformation>
147+
<EnableUAC>false</EnableUAC>
148+
<AdditionalDependencies>Ws2_32.lib;Mswsock.lib;AdvApi32.lib;%(AdditionalDependencies)</AdditionalDependencies>
149+
</Link>
150+
</ItemDefinitionGroup>
151+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
152+
<ClCompile>
153+
<PrecompiledHeader>Use</PrecompiledHeader>
154+
<WarningLevel>Level3</WarningLevel>
155+
<FunctionLevelLinking>true</FunctionLevelLinking>
156+
<IntrinsicFunctions>true</IntrinsicFunctions>
157+
<SDLCheck>true</SDLCheck>
158+
<PreprocessorDefinitions>NDEBUG;NTPCLIENT_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
159+
<ConformanceMode>true</ConformanceMode>
160+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
161+
</ClCompile>
162+
<Link>
163+
<SubSystem>Windows</SubSystem>
164+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
165+
<OptimizeReferences>true</OptimizeReferences>
166+
<GenerateDebugInformation>true</GenerateDebugInformation>
167+
<EnableUAC>false</EnableUAC>
168+
</Link>
169+
</ItemDefinitionGroup>
170+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
171+
<ImportGroup Label="ExtensionTargets">
172+
</ImportGroup>
173+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Filter Include="Source Files">
5+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
6+
<Extensions>cpp;c;cc;cxx;c++;def;odl;idl;hpj;bat;asm;asmx</Extensions>
7+
</Filter>
8+
<Filter Include="Header Files">
9+
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
10+
<Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
11+
</Filter>
12+
<Filter Include="Resource Files">
13+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
14+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
15+
</Filter>
16+
</ItemGroup>
17+
<ItemGroup>
18+
<ClInclude Include="resource.h">
19+
<Filter>Header Files</Filter>
20+
</ClInclude>
21+
</ItemGroup>
22+
<ItemGroup>
23+
<ResourceCompile Include="ntp_client_dll.rc">
24+
<Filter>Resource Files</Filter>
25+
</ResourceCompile>
26+
</ItemGroup>
27+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup />
4+
</Project>

0 commit comments

Comments
 (0)