File: PJS_Exceptions.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 (27 lines) | stat: -rw-r--r-- 365 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
/*!
    @header PJS_Exceptions.h
    @abstract Functions for dealing with exception handling
*/

#ifndef __PJS_EXCEPTIONS_H__
#define __PJS_EXCEPTIONS_H__

#ifdef __cplusplus
extern "C" {
#endif

#include "perl.h"

#include "JavaScript_Env.h"

#include "PJS_Context.h"

PJS_EXTERN void
PJS_report_exception(PJS_Context *);    

#ifdef __cplusplus
}
#endif

#endif