mirror of
https://github.com/izzy2lost/PSX1.git
synced 2026-03-26 16:38:52 -07:00
a3c46b7ffd
To ease maintenance burden. Includes lightrec. Only gpulib_thread_if is left out, unsure what to do with it.
21 lines
322 B
C
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__ */
|
|
|