31 lines
No EOL
673 B
C++
31 lines
No EOL
673 B
C++
// BLANKART
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2018-2025 by Kart Krew.
|
|
// Copyright (C) 2026 by "yama".
|
|
// Copyright (C) 2026 Blankart Team.
|
|
//
|
|
// This program is free software distributed under the
|
|
// terms of the GNU General Public License, version 2.
|
|
// See the 'LICENSE' file for more details.
|
|
//-----------------------------------------------------------------------------
|
|
/// \file k_runahead.hpp
|
|
/// \brief Millisecond-level input polling
|
|
|
|
|
|
|
|
#ifndef __K_RUNAHEAD__
|
|
#define __K_RUNAHEAD__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct inputpoll_t
|
|
{
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif |