Skip to content

Commit 6841e3a

Browse files
committed
overhaul of file names in lib
1 parent 2a933d3 commit 6841e3a

20 files changed

+84
-88
lines changed

KeyCapLib/KeyCapLib.vcxproj

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -150,27 +150,27 @@
150150
<ItemGroup>
151151
<ClInclude Include="configfile.h" />
152152
<ClInclude Include="inputproc.h" />
153-
<ClInclude Include="keyboardinput.h" />
154-
<ClInclude Include="keyboardproc.h" />
155-
<ClInclude Include="keycapture.h" />
156-
<ClInclude Include="keycapturestructs.h" />
157-
<ClInclude Include="keycaptureutil.h" />
158-
<ClInclude Include="mouseinput.h" />
159-
<ClInclude Include="mouseproc.h" />
160-
<ClInclude Include="sendinputthread.h" />
153+
<ClInclude Include="inputsenderkeyboard.h" />
154+
<ClInclude Include="inputprockeyboard.h" />
155+
<ClInclude Include="keycap.h" />
156+
<ClInclude Include="keycapstructs.h" />
157+
<ClInclude Include="keycaputil.h" />
158+
<ClInclude Include="inputsendermouse.h" />
159+
<ClInclude Include="inputprocmouse.h" />
160+
<ClInclude Include="inputsenderthread.h" />
161161
<ClInclude Include="stdafx.h" />
162162
<ClInclude Include="targetver.h" />
163163
</ItemGroup>
164164
<ItemGroup>
165165
<ClCompile Include="configfile.cpp" />
166166
<ClCompile Include="inputproc.cpp" />
167-
<ClCompile Include="keyboardinput.cpp" />
168-
<ClCompile Include="keyboardproc.cpp" />
169-
<ClCompile Include="keycapture.cpp" />
170-
<ClCompile Include="keycaptureutil.cpp" />
171-
<ClCompile Include="mouseinput.cpp" />
172-
<ClCompile Include="mouseproc.cpp" />
173-
<ClCompile Include="sendinputthread.cpp" />
167+
<ClCompile Include="inputsenderkeyboard.cpp" />
168+
<ClCompile Include="inputprockeyboard.cpp" />
169+
<ClCompile Include="keycap.cpp" />
170+
<ClCompile Include="keycaputil.cpp" />
171+
<ClCompile Include="inputsendermouse.cpp" />
172+
<ClCompile Include="inputprocmouse.cpp" />
173+
<ClCompile Include="inputsenderthread.cpp" />
174174
</ItemGroup>
175175
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
176176
<ImportGroup Label="ExtensionTargets">

KeyCapLib/KeyCapLib.vcxproj.filters

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,27 @@
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup>
44
<ClCompile Include="configfile.cpp" />
5-
<ClCompile Include="keyboardinput.cpp" />
6-
<ClCompile Include="keyboardproc.cpp" />
7-
<ClCompile Include="keycapture.cpp" />
8-
<ClCompile Include="keycaptureutil.cpp" />
9-
<ClCompile Include="mouseinput.cpp" />
10-
<ClCompile Include="sendinputthread.cpp" />
5+
<ClCompile Include="inputsenderkeyboard.cpp" />
6+
<ClCompile Include="inputprockeyboard.cpp" />
7+
<ClCompile Include="keycap.cpp" />
8+
<ClCompile Include="keycaputil.cpp" />
119
<ClCompile Include="inputproc.cpp" />
12-
<ClCompile Include="mouseproc.cpp" />
10+
<ClCompile Include="inputprocmouse.cpp" />
11+
<ClCompile Include="inputsenderthread.cpp" />
12+
<ClCompile Include="inputsendermouse.cpp" />
1313
</ItemGroup>
1414
<ItemGroup>
1515
<ClInclude Include="stdafx.h" />
1616
<ClInclude Include="targetver.h" />
1717
<ClInclude Include="configfile.h" />
18-
<ClInclude Include="keyboardinput.h" />
19-
<ClInclude Include="keyboardproc.h" />
20-
<ClInclude Include="keycapture.h" />
21-
<ClInclude Include="keycapturestructs.h" />
22-
<ClInclude Include="keycaptureutil.h" />
23-
<ClInclude Include="mouseinput.h" />
24-
<ClInclude Include="sendinputthread.h" />
18+
<ClInclude Include="inputsenderkeyboard.h" />
19+
<ClInclude Include="inputprockeyboard.h" />
20+
<ClInclude Include="keycap.h" />
21+
<ClInclude Include="keycapstructs.h" />
22+
<ClInclude Include="keycaputil.h" />
2523
<ClInclude Include="inputproc.h" />
26-
<ClInclude Include="mouseproc.h" />
24+
<ClInclude Include="inputprocmouse.h" />
25+
<ClInclude Include="inputsenderthread.h" />
26+
<ClInclude Include="inputsendermouse.h" />
2727
</ItemGroup>
2828
</Project>

KeyCapLib/configfile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
////////////////////////////////////////////////////////////////////////////////
1919

2020
#include "configfile.h"
21-
#include "keycaptureutil.h"
21+
#include "keycaputil.h"
2222

2323
const int FILE_DATA_PREFIX = (int)0x0E0CA000;
2424
const int DATA_FORMAT_VERSION = (int)0x1;

KeyCapLib/configfile.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@
2020
#ifndef CONFIG_FILE_H_ // equivalently, #if !defined HEADER_H_
2121
#define CONFIG_FILE_H_
2222

23-
#include "stdafx.h"
24-
#include "keycapturestructs.h"
23+
#include "keycapstructs.h"
2524

2625
int LoadFile(char* sFile, RemapEntry** g_KeyTranslationHead, void** g_KeyTranslationEnd);
2726
#endif

KeyCapLib/inputproc.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
// SOFTWARE.
1818
////////////////////////////////////////////////////////////////////////////////
1919

20-
#include "keycapturestructs.h"
21-
#include "keycaptureutil.h"
22-
#include "sendinputthread.h"
20+
#include "keycapstructs.h"
21+
#include "keycaputil.h"
22+
#include "inputsenderthread.h"
2323

2424
extern RemapEntryContainerListItem* g_KeyTranslationTable[WIN_KEY_COUNT];
2525

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
////////////////////////////////////////////////////////////////////////////////
1919

2020
#include "inputproc.h"
21-
#include "keycapturestructs.h"
22-
#include "keyboardproc.h"
21+
#include "keycapstructs.h"
22+
#include "inputprockeyboard.h"
2323

24-
#include "keycaptureutil.h"
24+
#include "keycaputil.h"
2525

2626
/*
2727
Wrapper for LowLevelInputProc
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
// SOFTWARE.
1818
////////////////////////////////////////////////////////////////////////////////
1919
#pragma once
20-
#ifndef KEYBOARD_PROC_H_ // equivalently, #if !defined HEADER_H_
21-
#define KEYBOARD_PROC_H_
20+
#ifndef INPUT_PROC_KEYBOARD_H_ // equivalently, #if !defined HEADER_H_
21+
#define INPUT_PROC_KEYBOARD_H_
2222

2323
#include "stdafx.h"
2424

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
////////////////////////////////////////////////////////////////////////////////
1919

2020
#include "inputproc.h"
21-
#include "keycapturestructs.h"
22-
#include "keycaptureutil.h"
21+
#include "keycapstructs.h"
22+
#include "keycaputil.h"
2323

2424
/*
2525
Wrapper for LowLevelInputProc
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
// SOFTWARE.
1818
////////////////////////////////////////////////////////////////////////////////
1919
#pragma once
20-
#ifndef MOUSE_PROC_H_ // equivalently, #if !defined HEADER_H_
21-
#define MOUSE_PROC_H_
20+
#ifndef INPUT_PROC_MOUSE_H_ // equivalently, #if !defined HEADER_H_
21+
#define INPUT_PROC_MOUSE_H_
2222

2323
#include "stdafx.h"
2424

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
// SOFTWARE.
2323
////////////////////////////////////////////////////////////////////////////////
2424

25-
#include "keyboardinput.h"
26-
#include "keycaptureutil.h"
25+
#include "inputsenderkeyboard.h"
26+
#include "keycaputil.h"
2727

2828
/*
2929
Sends the necessary inputs to complete the trigger (modifier keys)

0 commit comments

Comments
 (0)