File: PJS_Script.h

package info (click to toggle)
libjavascript-perl 1.08-1%2Blenny1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 412 kB
  • ctags: 203
  • sloc: perl: 1,686; ansic: 1,620; makefile: 55
file content (29 lines) | stat: -rw-r--r-- 374 bytes parent folder | download | duplicates (2)
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
/*!
    @header PJS_Script.h
    @abstract Types and functions related to script handling
*/

#ifndef __PJS_SCRIPT_H__
#define __PJS_SCRIPT_H__

#ifdef __cpluplus
extern "C" {
#endif

#include "EXTERN.h"
#include "perl.h"

#include "PJS_Types.h"
#include "PJS_Common.h"

struct PJS_Script {
    PJS_Context *cx;
    JSScript *script;
};

#ifdef __cpluplus
}
#endif

#endif