Changed cpp files to c files, removed unnecessary file
This commit is contained in:
parent
f2d0f6f743
commit
cde226dbdc
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@
|
||||
################################################################################
|
||||
|
||||
/.vs
|
||||
/x64
|
||||
|
10
MenuLib.cpp
10
MenuLib.cpp
@ -1,10 +0,0 @@
|
||||
// MenuLib.cpp : Hiermit werden die Funktionen für die statische Bibliothek definiert.
|
||||
//
|
||||
|
||||
#include "pch.h"
|
||||
#include "framework.h"
|
||||
|
||||
// TODO: Dies ist ein Beispiel für eine Bibliotheksfunktion.
|
||||
void fnMenuLib()
|
||||
{
|
||||
}
|
10
MenuLib.sln
10
MenuLib.sln
@ -5,6 +5,8 @@ VisualStudioVersion = 16.0.29613.14
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MenuLib", "MenuLib.vcxproj", "{5ADA9F67-F267-4FF6-AB61-E73C21F6EE36}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibTest", "..\..\Local\VisualStudioProjects\Projects\LibTest\LibTest.vcxproj", "{C1F49BC7-16F3-4522-954B-072E4F1603AA}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|x64 = Debug|x64
|
||||
@ -21,6 +23,14 @@ Global
|
||||
{5ADA9F67-F267-4FF6-AB61-E73C21F6EE36}.Release|x64.Build.0 = Release|x64
|
||||
{5ADA9F67-F267-4FF6-AB61-E73C21F6EE36}.Release|x86.ActiveCfg = Release|Win32
|
||||
{5ADA9F67-F267-4FF6-AB61-E73C21F6EE36}.Release|x86.Build.0 = Release|Win32
|
||||
{C1F49BC7-16F3-4522-954B-072E4F1603AA}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{C1F49BC7-16F3-4522-954B-072E4F1603AA}.Debug|x64.Build.0 = Debug|x64
|
||||
{C1F49BC7-16F3-4522-954B-072E4F1603AA}.Debug|x86.ActiveCfg = Debug|Win32
|
||||
{C1F49BC7-16F3-4522-954B-072E4F1603AA}.Debug|x86.Build.0 = Debug|Win32
|
||||
{C1F49BC7-16F3-4522-954B-072E4F1603AA}.Release|x64.ActiveCfg = Release|x64
|
||||
{C1F49BC7-16F3-4522-954B-072E4F1603AA}.Release|x64.Build.0 = Release|x64
|
||||
{C1F49BC7-16F3-4522-954B-072E4F1603AA}.Release|x86.ActiveCfg = Release|Win32
|
||||
{C1F49BC7-16F3-4522-954B-072E4F1603AA}.Release|x86.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
@ -153,8 +153,7 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="menu.c" />
|
||||
<ClCompile Include="MenuLib.cpp" />
|
||||
<ClCompile Include="pch.cpp">
|
||||
<ClCompile Include="pch.c">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
|
||||
|
@ -26,14 +26,11 @@
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="MenuLib.cpp">
|
||||
<Filter>Quelldateien</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="pch.cpp">
|
||||
<Filter>Quelldateien</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="menu.c">
|
||||
<Filter>Quelldateien</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="pch.c">
|
||||
<Filter>Quelldateien</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
</Project>
|
1
menu.c
1
menu.c
@ -1,4 +1,5 @@
|
||||
#include "pch.h"
|
||||
#include "framework.h"
|
||||
#include "menu.h"
|
||||
|
||||
// Checks if a line index should display a menu item
|
||||
|
Reference in New Issue
Block a user