Files
notaz a3c46b7ffd sync from libretro branch
To ease maintenance burden. Includes lightrec.
Only gpulib_thread_if is left out, unsure what to do with it.
2024-10-08 01:34:43 +03:00

21 lines
322 B
C

/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2022 Paul Cercueil <paul@crapouillou.net>
*/
#ifndef __LIGHTREC_PLUGIN_H__
#define __LIGHTREC_PLUGIN_H__
#ifdef LIGHTREC
#define drc_is_lightrec() 1
#else /* if !LIGHTREC */
#define drc_is_lightrec() 0
#endif
#endif /* __LIGHTREC_PLUGIN_H__ */