Skip to content

Commit 56d8600

Browse files
committed
Compatibility with VS 2019
1 parent dfebb3c commit 56d8600

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535

3636
# VS Settings
3737
*.sdf
38+
*.suo
3839

3940
# Logs
4041
CrazyKeys/CrazyKeys_Exe/MemFileName2.txt

CrazyKeys/CrazyKeys_Dll/DllHookManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ bool IsFirstVKeyInSameSC( BYTE scanCode, unsigned char vkCode )
109109
return false;
110110
}
111111

112-
bool CDllHookManager::OnProcMouseHook(const PMSLLHOOKSTRUCT& hookStruct, WPARAM wParam)
112+
bool CDllHookManager::OnProcMouseHook(const PMSLLHOOKSTRUCT& /*hookStruct*/, WPARAM wParam)
113113
{
114114
if (wParam == WM_MBUTTONUP && GetAsyncKeyState(VK_SHIFT)) // Shift + Middle mouse click
115115
{

Lobj/Archive.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22
#include <wtypes.h>
33
#include <windows.h>
4-
#include <typeinfo.h>
4+
#include <typeinfo>
55
//ñþäà íèêàêèõ èíöëóäîâ íåëüçÿ
66

77
enum TArhiveDirection { AD_Read, AD_Write };

0 commit comments

Comments
 (0)