summaryrefslogtreecommitdiff
path: root/fitz/except.h
blob: a964b94e7473de2f7f7d6eac56c6b9f1488fdaa9 (plain)
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
41
42
43
44
45
46
#ifndef EXCEPT_H
#define EXCEPT_H

#include "fitz.h"

typedef struct fz_except {
  char mess[256];
} fz_except;

#include "exceptxxx.h"
/*
    Macros for fz_try and fz_catch are defined in exceptxxx.h,
    but their definitions are best ignored.  Just use them as follows:

    fz_var(..);
    fz_var(..);

    fz_try(ctx)
    {
       .
       .
       .
    }
    fz_catch(ctx)
    {
       .
       .
       .
    }

    and don't return from within the try clause.
*/

void fz_throw(fz_context *, char *, ...);

fz_except *fz_caught(fz_context *);

void fz_rethrow(fz_context *);

#define fz_var(A) fz_var_xxx((void *)&(A))

void fz_var_xxx(void *x);

void fz_except_init(fz_context *);

#endif /* EXCEPT */