-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPJS_PerlSub.h
More file actions
40 lines (30 loc) · 741 Bytes
/
PJS_PerlSub.h
File metadata and controls
40 lines (30 loc) · 741 Bytes
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
/*!
@header PJS_PerlSub.h
@abstract Types and functions related the JS native class PerlSub
*/
#ifndef __PJS_PERLSUB_H__
#define __PJS_PERLSUB_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "EXTERN.h"
#include "perl.h"
#include "JavaScript_Env.h"
#include "PJS_Types.h"
#include "PJS_Common.h"
struct PJS_PerlSub {
SV *cv;
};
PJS_EXTERN JSObject *
PJS_NewPerlSubObject(JSContext *cx, JSObject *parent, SV *ref);
/*! @function PJS_InitPerlSubClass
@abstract Initiailizes the Perl sub class
@param pcx The context to init the class in
@param global The global object for the context
*/
PJS_EXTERN JSObject *
PJS_InitPerlSubClass(PJS_Context *pcx, JSObject *global);
#ifdef __cplusplus
}
#endif
#endif