rpcsx/rpcs3/Emu/Io/interception.h
Nekotekina b7bf316c1a Don't randomly include "stdafx.h"
It's file for precompiled headers.
Include what is used, don't rely on transitive includes.
2020-12-22 14:32:30 +03:00

12 lines
167 B
C++

#pragma once
#include "util/types.hpp"
#include "util/atomic.hpp"
namespace input
{
extern atomic_t<bool> g_intercepted;
void SetIntercepted(bool intercepted);
}