-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathfilter.h
65 lines (48 loc) · 2.46 KB
/
filter.h
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// license:BSD-3-Clause
// copyright-holders:Nathan Woods
/***************************************************************************
filter.h
Imgtool filters
***************************************************************************/
#ifndef MAME_TOOLS_IMGTOOL_FILTER_H
#define MAME_TOOLS_IMGTOOL_FILTER_H
#pragma once
#include "library.h"
struct imgtool_filter;
enum
{
/* --- the following bits of info are returned as 64-bit signed integers --- */
FILTINFO_INT_FIRST = 0x00000,
FILTINFO_INT_STATESIZE,
/* --- the following bits of info are returned as pointers to data or functions --- */
FILTINFO_PTR_FIRST = 0x10000,
FILTINFO_PTR_READFILE,
FILTINFO_PTR_WRITEFILE,
FILTINFO_PTR_CHECKSTREAM,
/* --- the following bits of info are returned as NULL-terminated strings --- */
FILTINFO_STR_FIRST = 0x20000,
FILTINFO_STR_NAME,
FILTINFO_STR_HUMANNAME,
FILTINFO_STR_EXTENSION
};
extern const imgtool::filter_getinfoproc filters[];
imgtool::filter_getinfoproc filter_lookup(const char *name);
/* ----------------------------------------------------------------------- */
int64_t filter_get_info_int(imgtool::filter_getinfoproc get_info, uint32_t state);
void *filter_get_info_ptr(imgtool::filter_getinfoproc get_info, uint32_t state);
void *filter_get_info_fct(imgtool::filter_getinfoproc get_info, uint32_t state);
const char *filter_get_info_string(imgtool::filter_getinfoproc get_info, uint32_t state);
/* ----------------------------------------------------------------------- */
extern void filter_eoln_getinfo(uint32_t state, imgtool::filterinfo *info);
extern void filter_cocobas_getinfo(uint32_t state, imgtool::filterinfo *info);
extern void filter_dragonbas_getinfo(uint32_t state, imgtool::filterinfo *info);
extern void filter_macbinary_getinfo(uint32_t state, imgtool::filterinfo *info);
extern void filter_vzsnapshot_getinfo(uint32_t state, imgtool::filterinfo *info);
extern void filter_vzbas_getinfo(uint32_t state, imgtool::filterinfo *info);
extern void filter_thombas5_getinfo(uint32_t state, imgtool::filterinfo *info);
extern void filter_thombas7_getinfo(uint32_t state, imgtool::filterinfo *info);
extern void filter_thombas128_getinfo(uint32_t state, imgtool::filterinfo *info);
extern void filter_thomcrypt_getinfo(uint32_t state, imgtool::filterinfo *info);
extern void filter_bml3bas_getinfo(uint32_t state, imgtool::filterinfo *info);
extern void filter_hp9845data_getinfo(uint32_t state, imgtool::filterinfo *info);
#endif // MAME_TOOLS_IMGTOOL_FILTER_H