Added some os detection

Need to detect linux x86 or x64
This commit is contained in:
Nemirtingas 2019-09-01 20:46:55 +02:00
parent 92ed36f499
commit 495bc957cd
2 changed files with 19 additions and 6 deletions

View file

@ -2,11 +2,9 @@
#define __INCLUDED_WINDOWS_HOOK_H__
#include "Base_Hook.h"
#ifndef NO_OVERLAY
#define WIN32_LEAN_AND_MEAN
#define VC_EXTRALEAN
#include <Windows.h>
#ifdef __WINDOWS__
#ifndef NO_OVERLAY
class Windows_Hook : public Base_Hook
{
@ -48,4 +46,5 @@ public:
};
#endif//NO_OVERLAY
#endif//__INCLUDED_WINDOWS_HOOK_H__
#endif//__WINDOWS__
#endif//__INCLUDED_WINDOWS_HOOK_H__