File: JavaScript.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 (36 lines) | stat: -rw-r--r-- 627 bytes parent folder | download
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
/*!
    @header JavaScript.pm
    @abstract This module provides an interface between SpiderMonkey and perl.
        
    @copyright Claes Jakobsson 2001-2007
*/

#ifndef __JAVASCRIPT_H__
#define __JAVASCRIPT_H__

#ifdef __cplusplus
extern "C" {
#endif

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

#include "JavaScript_Env.h"

#include "PJS_Call.h"
#include "PJS_Types.h"
#include "PJS_Runtime.h"
#include "PJS_Context.h"
#include "PJS_Class.h"
#include "PJS_Function.h"
#include "PJS_Property.h"
#include "PJS_Script.h"
#include "PJS_TypeConversion.h"
#include "PJS_Common.h"

#ifdef __cplusplus
}
#endif

#endif