ctpv/previews.h

22 lines
665 B
C
Raw Normal View History

2022-05-22 09:55:04 +02:00
#include <stdlib.h>
#include <limits.h>
2022-05-22 09:55:04 +02:00
#include "gen/prev/scripts.h"
#include "preview.h"
/*
* This file is supposed to be included in ctpv.c
*/
#define PP(e, t, s, n, p) { #n, e, t, s, prev_scr_##n##_sh, p }
#define PR(e, t, s, n) PP(e, t, s, n, 0)
2022-05-22 09:55:04 +02:00
Preview previews[] = {
PP(NULL, NULL, NULL, wrapper, INT_MAX),
PR(NULL, "text", NULL, text),
PR(NULL, NULL, NULL, any),
PR("md", NULL, NULL, markdown),
PR(NULL, "application", "json", json),
2022-05-25 23:57:50 +02:00
PR(NULL, "image", NULL, image),
2022-05-22 09:55:04 +02:00
};