blob: 58de630ecf8af713f9ab3d993f4abd8ba10af070 (
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
|
module dmagick.c.coder;
import core.stdc.stdio;
import dmagick.c.exception;
import dmagick.c.magickType;
extern(C)
{
struct CoderInfo
{
char*
path,
magick,
name;
MagickBooleanType
exempt,
stealth;
CoderInfo*
previous,
next;
size_t
signature;
}
char** GetCoderList(const(char)*, size_t*, ExceptionInfo*);
const(CoderInfo)* GetCoderInfo(const(char)*, ExceptionInfo*);
const(CoderInfo)** GetCoderInfoList(const(char)*, size_t*, ExceptionInfo*);
MagickBooleanType CoderComponentGenesis();
MagickBooleanType ListCoderInfo(FILE*, ExceptionInfo*);
}
void CoderComponentTerminus();
|