Linux Audio

Check our new training course

Loading...
v3.15
 
 1#ifndef _PERF_UI_SLANG_H_
 2#define _PERF_UI_SLANG_H_ 1
 3/*
 4 * slang versions <= 2.0.6 have a "#if HAVE_LONG_LONG" that breaks
 5 * the build if it isn't defined. Use the equivalent one that glibc
 6 * has on features.h.
 7 */
 8#include <features.h>
 9#ifndef HAVE_LONG_LONG
10#define HAVE_LONG_LONG __GLIBC_HAVE_LONG_LONG
11#endif
12#include <slang.h>
13
14#if SLANG_VERSION < 20104
15#define slsmg_printf(msg, args...) \
16	SLsmg_printf((char *)(msg), ##args)
17#define slsmg_write_nstring(msg, len) \
18	SLsmg_write_nstring((char *)(msg), len)
19#define sltt_set_color(obj, name, fg, bg) \
20	SLtt_set_color(obj,(char *)(name), (char *)(fg), (char *)(bg))
21#else
22#define slsmg_printf SLsmg_printf
23#define slsmg_write_nstring SLsmg_write_nstring
24#define sltt_set_color SLtt_set_color
25#endif
26
27#define SL_KEY_UNTAB 0x1000
28
29#endif /* _PERF_UI_SLANG_H_ */
v6.13.7
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _PERF_UI_SLANG_H_
 3#define _PERF_UI_SLANG_H_ 1
 4/*
 5 * slang versions <= 2.0.6 have a "#if HAVE_LONG_LONG" that breaks
 6 * the build if it isn't defined. Use the equivalent one that glibc
 7 * has on features.h.
 8 */
 9#include <features.h>
10#ifndef HAVE_LONG_LONG
11#define HAVE_LONG_LONG __GLIBC_HAVE_LONG_LONG
12#endif
 
13
14/* Enable future slang's corrected function prototypes. */
15#define ENABLE_SLFUTURE_CONST 1
16#define ENABLE_SLFUTURE_VOID 1
17
18#ifdef HAVE_SLANG_INCLUDE_SUBDIR
19#include <slang/slang.h>
 
20#else
21#include <slang.h>
 
 
22#endif
23
24#define SL_KEY_UNTAB 0x1000
25
26#endif /* _PERF_UI_SLANG_H_ */