Skip to content

Commit

Permalink
Fixed some issues with special characters
Browse files Browse the repository at this point in the history
  • Loading branch information
mkanzler committed Apr 15, 2024
1 parent 343dc1b commit b0e5b9c
Show file tree
Hide file tree
Showing 69 changed files with 177 additions and 20 deletions.
Binary file not shown.
Binary file added .vs/AutoTyper/v17/.suo
Binary file not shown.
Binary file added .vs/AutoTyper/v17/Browse.VC.db
Binary file not shown.
53 changes: 53 additions & 0 deletions .vs/AutoTyper/v17/DocumentLayout.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"Version": 1,
"WorkspaceRootPath": "C:\\Users\\marcel.kanzler\\Documents\\GIT Repos\\MK-Autotyper\\",
"Documents": [
{
"AbsoluteMoniker": "D:0:0:{8E7E5F83-B94F-4EC0-9023-7C4684BB5E9F}|AutoTyper\\AutoTyper.vcxproj|C:\\Users\\marcel.kanzler\\Documents\\GIT Repos\\MK-Autotyper\\AutoTyper\\AutoTyper.cpp||{D0E1A5C6-B359-4E41-9B60-3365922C2A22}",
"RelativeMoniker": "D:0:0:{8E7E5F83-B94F-4EC0-9023-7C4684BB5E9F}|AutoTyper\\AutoTyper.vcxproj|solutionrelative:AutoTyper\\AutoTyper.cpp||{D0E1A5C6-B359-4E41-9B60-3365922C2A22}"
},
{
"AbsoluteMoniker": "D:0:0:{A2FE74E1-B743-11D0-AE1A-00A0C90FFFC3}|\u003CMiscFiles\u003E|C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\VC\\v170\\Microsoft.CppBuild.targets||{FA3CD31E-987B-443A-9B81-186104E8DAC1}|"
}
],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": [
{
"DockedWidth": 200,
"SelectedChildIndex": 1,
"Children": [
{
"$type": "Document",
"DocumentIndex": 1,
"Title": "Microsoft.CppBuild.targets",
"DocumentMoniker": "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\VC\\v170\\Microsoft.CppBuild.targets",
"RelativeDocumentMoniker": "..\\..\\..\\..\\..\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\VC\\v170\\Microsoft.CppBuild.targets",
"ToolTip": "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\VC\\v170\\Microsoft.CppBuild.targets",
"RelativeToolTip": "..\\..\\..\\..\\..\\Program Files\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Microsoft\\VC\\v170\\Microsoft.CppBuild.targets",
"ViewState": "AQIAAPUBAAAAAAAAAAAqwBICAAAEAAAA",
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003801|",
"WhenOpened": "2024-04-15T14:07:42.952Z",
"EditorCaption": ""
},
{
"$type": "Document",
"DocumentIndex": 0,
"Title": "AutoTyper.cpp",
"DocumentMoniker": "C:\\Users\\marcel.kanzler\\Documents\\GIT Repos\\MK-Autotyper\\AutoTyper\\AutoTyper.cpp",
"RelativeDocumentMoniker": "AutoTyper\\AutoTyper.cpp",
"ToolTip": "C:\\Users\\marcel.kanzler\\Documents\\GIT Repos\\MK-Autotyper\\AutoTyper\\AutoTyper.cpp",
"RelativeToolTip": "AutoTyper\\AutoTyper.cpp",
"ViewState": "AQIAAB4AAAAAAAAAAAAAAD0AAAAvAAAA",
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000677|",
"WhenOpened": "2024-04-15T07:26:56.464Z",
"EditorCaption": ""
}
]
}
]
}
]
}
Binary file added .vs/AutoTyper/v17/Solution.VC.db
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .vs/MK-Autotyper/v17/.wsuo
Binary file not shown.
Binary file added .vs/MK-Autotyper/v17/Browse.VC.db
Binary file not shown.
12 changes: 12 additions & 0 deletions .vs/MK-Autotyper/v17/DocumentLayout.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"Version": 1,
"WorkspaceRootPath": "C:\\Users\\marcel.kanzler\\Documents\\GIT Repos\\MK-Autotyper\\",
"Documents": [],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": []
}
]
}
3 changes: 3 additions & 0 deletions .vs/ProjectSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"CurrentProjectSetting": "No Configurations"
}
6 changes: 6 additions & 0 deletions .vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"ExpandedNodes": [
""
],
"PreviewInSolutionExplorer": false
}
Binary file added .vs/slnx.sqlite
Binary file not shown.
26 changes: 19 additions & 7 deletions AutoTyper/AutoTyper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@
#include <iostream>


void PressKey(BYTE keyCode) {
void PressKey(BYTE keyCode, bool keyCtrl = false, bool keyAlt = false, bool keyShift = false) {
if (keyShift) keybd_event(VK_LSHIFT, 0, 0, 0);
if (keyCtrl) keybd_event(VK_LCONTROL, 0, 0, 0);
if (keyAlt) keybd_event(VK_MENU, 0, 0, 0);
keybd_event(keyCode, 0, 0, 0); // Press key
keybd_event(keyCode, 0, KEYEVENTF_KEYUP, 0); // Release key
if (keyCtrl) keybd_event(VK_LCONTROL, 0, KEYEVENTF_KEYUP, 0);
if (keyCtrl) keybd_event(VK_MENU, 0, KEYEVENTF_KEYUP, 0);
if (keyShift) keybd_event(VK_LSHIFT, 0, KEYEVENTF_KEYUP, 0);
}

// Function to simulate keystrokes
Expand All @@ -20,22 +26,28 @@ void simulateKeystrokes(const std::wstring& input,const int&keyStrokeDelay, cons
Sleep(keyStrokeDelay); // Can be adjusted
switch (c) {
case 'ü':
PressKey(VK_OEM_1); // 'ü'
PressKey(VK_OEM_1);
break;
case 'ö':
PressKey(VK_OEM_3); // 'ö'
PressKey(VK_OEM_3);
break;
case 'ß':
PressKey(VK_OEM_4); // 'ß'
PressKey(VK_OEM_4);
break;
case '^':
PressKey(VK_OEM_5); // '^'
PressKey(VK_OEM_5);
break;
case '´':
PressKey(VK_OEM_6); // '´'
PressKey(VK_OEM_6);
break;
case 'ä':
PressKey(VK_OEM_7); // 'ä'
PressKey(VK_OEM_7);
break;
case '@':
PressKey(VkKeyScan('q'), true, true, false);
break;
case '§':
PressKey(VkKeyScan('3'), false, false, true);
break;
default:
if (!isprint(c) && c != '\n') {
Expand Down
1 change: 1 addition & 0 deletions AutoTyper/AutoTyper.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
Expand Down
Binary file removed AutoTyper/x64/Debug/AutoTyper.ilk
Binary file not shown.
13 changes: 3 additions & 10 deletions AutoTyper/x64/Debug/AutoTyper.log
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppBuild.targets(514,5): warning MSB8028: The intermediate directory (x64\Debug\) contains files shared from another project (AutoTyper.vcxproj). This can lead to incorrect clean and rebuild behavior.
AutoTyper.cpp
C:\Users\Crash\source\repos\AutoTyper\AutoTyper\AutoTyper.cpp(16,24): warning C4244: 'initializing': conversion from 'const _Elem' to 'char', possible loss of data
with
[
_Elem=wchar_t
]
C:\Users\Crash\source\repos\AutoTyper\AutoTyper\AutoTyper.cpp(95,42): warning C4101: 'e': unreferenced local variable
C:\Users\Crash\source\repos\AutoTyper\AutoTyper\AutoTyper.cpp(101,42): warning C4101: 'e': unreferenced local variable
AutoTyper.vcxproj -> C:\Users\Crash\source\repos\AutoTyper\x64\Debug\MK AutoTyper.exe
C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.CppBuild.targets(531,5): warning MSB8028: The intermediate directory (x64\Debug\) contains files shared from another project (AutoTyper.vcxproj). This can lead to incorrect clean and rebuild behavior.
AutoTyper.obj : error LNK2019: unresolved external symbol _CrtDbgReport referenced in function "void * __cdecl std::_Allocate_manually_vector_aligned<struct std::_Default_allocate_traits>(unsigned __int64)" (??$_Allocate_manually_vector_aligned@U_Default_allocate_traits@std@@@std@@YAPEAX_K@Z)
C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\x64\Debug\MK AutoTyper.exe : fatal error LNK1120: 1 unresolved externals
Binary file modified AutoTyper/x64/Debug/AutoTyper.obj
Binary file not shown.
Empty file.
36 changes: 36 additions & 0 deletions AutoTyper/x64/Debug/MK AutoTyper.Build.CppClean.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\vc143.pdb
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\vc143.idb
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\autotyper.obj
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\autotyper.res
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.ilk
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\autotyper.obj.enc
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\autotyper.ilk
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\x64\debug\mk autotyper.pdb
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\cl.command.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\cl.items.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\cl.read.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\cl.write.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link-cvtres.read.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link-cvtres.write.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link-rc.read.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link-rc.write.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.41004-cvtres.read.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.41004-cvtres.write.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.41004-rc.read.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.41004-rc.write.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.41004.read.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.41004.read.2.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.41004.read.3.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.41004.read.4.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.41004.write.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.command.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.read.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.read.2.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.read.3.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.read.4.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.read.5.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.secondary.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\link.write.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\rc.command.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\rc.read.1.tlog
c:\users\marcel.kanzler\documents\git repos\mk-autotyper\autotyper\x64\debug\mk autotyper.tlog\rc.write.1.tlog
2 changes: 1 addition & 1 deletion AutoTyper/x64/Debug/MK AutoTyper.exe.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project>
<ProjectOutputs>
<ProjectOutput>
<FullPath>C:\Users\Crash\source\repos\AutoTyper\x64\Debug\MK AutoTyper.exe</FullPath>
<FullPath>C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\x64\Debug\MK AutoTyper.exe</FullPath>
</ProjectOutput>
</ProjectOutputs>
<ContentFiles />
Expand Down
Binary file removed AutoTyper/x64/Debug/MK AutoTyper.ilk
Binary file not shown.
Binary file modified AutoTyper/x64/Debug/MK AutoTyper.tlog/CL.command.1.tlog
Binary file not shown.
Binary file modified AutoTyper/x64/Debug/MK AutoTyper.tlog/CL.read.1.tlog
Binary file not shown.
Binary file modified AutoTyper/x64/Debug/MK AutoTyper.tlog/CL.write.1.tlog
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.31.31103:TargetPlatformVersion=10.0.19041.0:
Debug|x64|C:\Users\Crash\source\repos\AutoTyper\|
PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.39.33519:TargetPlatformVersion=10.0.22621.0:
Debug|x64|C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\|
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
��
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
��
1 change: 1 addition & 0 deletions AutoTyper/x64/Debug/MK AutoTyper.tlog/link-rc.read.1.tlog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
��
1 change: 1 addition & 0 deletions AutoTyper/x64/Debug/MK AutoTyper.tlog/link-rc.write.1.tlog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
��
Binary file modified AutoTyper/x64/Debug/MK AutoTyper.tlog/link.command.1.tlog
Binary file not shown.
Binary file modified AutoTyper/x64/Debug/MK AutoTyper.tlog/link.read.1.tlog
Binary file not shown.
1 change: 1 addition & 0 deletions AutoTyper/x64/Debug/MK AutoTyper.tlog/link.read.2.tlog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
��
1 change: 1 addition & 0 deletions AutoTyper/x64/Debug/MK AutoTyper.tlog/link.read.3.tlog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
��
1 change: 1 addition & 0 deletions AutoTyper/x64/Debug/MK AutoTyper.tlog/link.read.4.tlog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
��
1 change: 1 addition & 0 deletions AutoTyper/x64/Debug/MK AutoTyper.tlog/link.read.5.tlog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
��
Binary file modified AutoTyper/x64/Debug/MK AutoTyper.tlog/link.write.1.tlog
Binary file not shown.
Binary file modified AutoTyper/x64/Debug/MK AutoTyper.tlog/rc.command.1.tlog
Binary file not shown.
Binary file modified AutoTyper/x64/Debug/MK AutoTyper.tlog/rc.read.1.tlog
Binary file not shown.
Binary file modified AutoTyper/x64/Debug/MK AutoTyper.tlog/rc.write.1.tlog
Binary file not shown.
Empty file.
Binary file removed AutoTyper/x64/Debug/autotyper.obj.enc
Binary file not shown.
Binary file modified AutoTyper/x64/Debug/vc143.idb
Binary file not shown.
Binary file modified AutoTyper/x64/Debug/vc143.pdb
Binary file not shown.
16 changes: 16 additions & 0 deletions AutoTyper/x64/Release/AutoTyper.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
 AutoTyper.cpp
C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\AutoTyper\AutoTyper.cpp(22,24): warning C4244: 'initializing': conversion from 'const _Elem' to 'char', possible loss of data
C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\AutoTyper\AutoTyper.cpp(22,24): warning C4244: with
C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\AutoTyper\AutoTyper.cpp(22,24): warning C4244: [
C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\AutoTyper\AutoTyper.cpp(22,24): warning C4244: _Elem=wchar_t
C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\AutoTyper\AutoTyper.cpp(22,24): warning C4244: ]
C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\AutoTyper\AutoTyper.cpp(47,31): warning C4244: 'argument': conversion from 'SHORT' to 'BYTE', possible loss of data
C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\AutoTyper\AutoTyper.cpp(50,31): warning C4244: 'argument': conversion from 'SHORT' to 'BYTE', possible loss of data
C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\AutoTyper\AutoTyper.cpp(107,42): warning C4101: 'e': unreferenced local variable
C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\AutoTyper\AutoTyper.cpp(113,42): warning C4101: 'e': unreferenced local variable
Generating code
3 of 102 functions ( 2.9%) were compiled, the rest were copied from previous compilation.
0 functions were new in current compilation
1 functions had inline decision re-evaluated but remain unchanged
Finished generating code
AutoTyper.vcxproj -> C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\x64\Release\MK AutoTyper.exe
Binary file added AutoTyper/x64/Release/AutoTyper.obj
Binary file not shown.
Binary file added AutoTyper/x64/Release/AutoTyper.res
Binary file not shown.
11 changes: 11 additions & 0 deletions AutoTyper/x64/Release/MK AutoTyper.exe.recipe
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<ProjectOutputs>
<ProjectOutput>
<FullPath>C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\x64\Release\MK AutoTyper.exe</FullPath>
</ProjectOutput>
</ProjectOutputs>
<ContentFiles />
<SatelliteDlls />
<NonRecipeFileRefs />
</Project>
Binary file added AutoTyper/x64/Release/MK AutoTyper.iobj
Binary file not shown.
Binary file added AutoTyper/x64/Release/MK AutoTyper.ipdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions AutoTyper/x64/Release/MK AutoTyper.tlog/Cl.items.tlog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\AutoTyper\AutoTyper.cpp;C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\AutoTyper\x64\Release\AutoTyper.obj
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.39.33519:TargetPlatformVersion=10.0.22621.0:
Release|x64|C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\|
Binary file not shown.
Binary file not shown.
3 changes: 3 additions & 0 deletions AutoTyper/x64/Release/MK AutoTyper.tlog/link.secondary.1.tlog
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
^C:\USERS\MARCEL.KANZLER\DOCUMENTS\GIT REPOS\MK-AUTOTYPER\AUTOTYPER\X64\RELEASE\AUTOTYPER.OBJ|C:\USERS\MARCEL.KANZLER\DOCUMENTS\GIT REPOS\MK-AUTOTYPER\AUTOTYPER\X64\RELEASE\AUTOTYPER.RES
C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\AutoTyper\x64\Release\MK AutoTyper.IPDB
C:\Users\marcel.kanzler\Documents\GIT Repos\MK-Autotyper\AutoTyper\x64\Release\MK AutoTyper.iobj
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added AutoTyper/x64/Release/vc143.pdb
Binary file not shown.
Binary file removed x64/Debug/MK AutoTyper.exe
Binary file not shown.
Binary file modified x64/Debug/MK AutoTyper.pdb
Binary file not shown.
Binary file added x64/Release/MK AutoTyper.exe
Binary file not shown.
Binary file added x64/Release/MK AutoTyper.pdb
Binary file not shown.

0 comments on commit b0e5b9c

Please sign in to comment.