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
|