Commit | Line | Data |
---|---|---|
92bda632 TC |
1 | #ifdef __cplusplus |
2 | extern "C" { | |
3 | #endif | |
4 | #include "EXTERN.h" | |
5 | #include "perl.h" | |
6 | #include "XSUB.h" | |
7 | #include "ppport.h" | |
8 | #ifdef __cplusplus | |
9 | } | |
10 | #endif | |
11 | ||
12 | #include "imext.h" | |
13 | #include "imperl.h" | |
14 | ||
15 | extern void lin_stretch(i_img *, int, int); | |
16 | ||
17 | DEFINE_IMAGER_CALLBACKS; | |
18 | ||
19 | MODULE = Imager::Filter::DynTest PACKAGE = Imager::Filter::DynTest | |
20 | ||
94022fed TC |
21 | PROTOTYPES: ENABLE |
22 | ||
92bda632 TC |
23 | void |
24 | lin_stretch(im, a, b) | |
25 | Imager::ImgRaw im | |
26 | int a | |
27 | int b | |
28 | ||
29 | BOOT: | |
30 | PERL_INITIALIZE_IMAGER_CALLBACKS; | |
31 |