summaryrefslogtreecommitdiff
path: root/pdf/pdf_js_none.c
blob: 34c7c491eb2a6acb32fb3944ebf51c6f374f6598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "fitz-internal.h"
#include "mupdf-internal.h"


pdf_js *pdf_new_js(pdf_document *doc)
{
	static int x;

	return (pdf_js *)&x;
}

void pdf_drop_js(pdf_js *js)
{
}

void pdf_js_setup_event(pdf_js *js, pdf_obj *target)
{
}

char *pdf_js_getEventValue(pdf_js *js)
{
	return "";
}

void pdf_js_execute(pdf_js *js, char *code)
{
}

void pdf_js_execute_count(pdf_js *js, char *code, int count)
{
}