summaryrefslogtreecommitdiff
path: root/src/lua3/cdluapdf.c
blob: 1260b91cb869eaeb3f6d420e0ec2bc6c556b9b57 (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
32
33
34
35
36
37
38
39
40
41
42
43
/** \file
 * \brief PDF Canvas Lua 3 Binding
 *
 * See Copyright Notice in cd.h
 */

#include <stdlib.h>
#include <stdio.h>

#include "cd.h"
#include "cdpdf.h"

#include <lua.h>
#include <lauxlib.h>

#include "cdlua.h"
#include "cdluapdf.h"
#include "cdlua3_private.h"

static void *cdpdf_checkdata(int param)
{
  lua_Object data = lua_getparam(param);
  if (!lua_isstring(data))
    lua_error("cdCreateCanvas CD_PDF: data should be of type string!");

  return lua_getstring(data);
}

static cdContextLUA cdluapdfctx = 
{
  0,
  "CD_PDF",
  cdContextPDF,
  cdpdf_checkdata,
  NULL,
  0
};

void cdluapdf_open(void)
{
  cdlua_addcontext(&cdluapdfctx);
}