mirror of
https://github.com/owntone/owntone-server.git
synced 2025-02-21 18:42:31 -05:00
19 lines
222 B
C
19 lines
222 B
C
/*
|
|
* $Id: $
|
|
*/
|
|
|
|
#ifndef _RSP_H_
|
|
#define _RSP_H_
|
|
|
|
#define RSP_VERSION "1.0"
|
|
|
|
extern PLUGIN_INFO _pi;
|
|
#define infn ((PLUGIN_INPUT_FN *)(_pi.pi))
|
|
|
|
#ifndef TRUE
|
|
# define TRUE 1
|
|
# define FALSE 0
|
|
#endif
|
|
|
|
#endif /* _RSP_H_ */
|