##// END OF EJS Templates
Updated to fixed TS lib, added spectrogram min/max sampling hints when available...
Updated to fixed TS lib, added spectrogram min/max sampling hints when available Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r85:1e3f92d40b0e
Show More
deprecate.h
10 lines | 137 B | text/x-c | CLexer
#ifndef DEPRECATE_H
#define DEPRECATE_H
#ifdef HIDE_DEPRECATED
#define DEPRECATE(x)
#else
#define DEPRECATE(x) x
#endif
#endif