Idź do dokumentacji tego pliku.
20 #ifndef __EKG_THEMES_H
21 #define __EKG_THEMES_H
26 #define _(a) gettext(a)
27 #define N_(a) gettext_noop(a)
50 unsigned int prompt_empty : 1;
55 #define print(x...) print_window_w(NULL, EKG_WINACT_JUNK, x)
56 #define print_status(x...) print_window_w(window_status, EKG_WINACT_JUNK, x)
58 #ifndef EKG2_WIN32_NOFUNCTION
60 void print_window(
const char *target,
session_t *session,
int activity,
int separate,
const char *theme, ...);
67 #define format_ok(format_find_result) (format_find_result[0])
68 #define format_exists(format) (format_ok(format_find(format)))
73 void theme_enumerate(
int (*enumerator)(
const char *theme,
const char *value));
74 int theme_read(
const char *filename,
int replace);
89 #define isalpha_pl_PL(x) ((x >= 'a' && x <= 'z') || (x >= 'A' && x <= 'Z') || x == 'ą' || x == 'ć' || x == 'ę' || x == 'ł' || x == 'ń' || x == 'ó' || x == 'ś' || x == 'ż' || x == 'ź' || x == 'Ą' || x == 'Ć' || x == 'Ę' || x == 'Ł' || x == 'Ń' || x == 'Ó' || x == 'Ś' || x == 'Ż' || x == 'Ź')