Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/majn/tgl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvvaltman <vvaltman@neon>2015-06-17 16:47:23 +0300
committervvaltman <vvaltman@neon>2015-06-17 16:47:23 +0300
commitd9769636bcd5d2b209c956e15eca4a81f9e677e9 (patch)
tree1455269ca884ac955791affd42eaa1ce5ca77d20 /tgl-inner.h
parent73482c7a461ff4341ea098dd258b6373f530ab70 (diff)
tgl: added possiblility to send custom keyboard
Diffstat (limited to 'tgl-inner.h')
-rw-r--r--tgl-inner.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tgl-inner.h b/tgl-inner.h
index c98f09a..2ffa932 100644
--- a/tgl-inner.h
+++ b/tgl-inner.h
@@ -21,11 +21,13 @@
#ifndef __TGL_INNER_H__
#define __TGL_INNER_H__
+#ifndef vlogprintf
#define vlogprintf(verbosity_level,...) \
do { \
if (TLS->verbosity >= verbosity_level) { \
TLS->callback.logprintf (__VA_ARGS__); \
} \
} while (0)
+#endif
#endif