File: PJS_Types.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 (26 lines) | stat: -rw-r--r-- 506 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
/*!
    @header PJS_Types
    @abstract Definitions of types used throughout the library
*/

#ifndef __PJS_TYPES_H__
#define __PJS_TYPES_H__

#ifdef __cplusplus
extern "C" {
#endif

typedef struct PJS_Context PJS_Context;
typedef struct PJS_Function PJS_Function;
typedef struct PJS_Property PJS_Property;
typedef struct PJS_Class PJS_Class;
typedef struct PJS_TrapHandler PJS_TrapHandler;
typedef struct PJS_Runtime PJS_Runtime;
typedef struct PJS_Script PJS_Script;

#ifdef __cplusplus
}
#endif

#endif