summaryrefslogtreecommitdiffstats
path: root/modules/image/inc/img_ocr.hpp
blob: 723588e7f9f02d74de02bb78d5462ef45fb3b4b3 (plain) (blame)
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
/******************************************************************************
 *	Copyright (C) 2018	Alejandro Colomar Andrés		      *
 ******************************************************************************/


/******************************************************************************
 ******* include guard ********************************************************
 ******************************************************************************/
# ifndef		VA_IMG_OCR_HPP
	# define	VA_IMG_OCR_HPP


/******************************************************************************
 ******* enums ****************************************************************
 ******************************************************************************/
	enum	Img_OCR_Action {
		IMG_OCR_ACT_FOO = 0,

		IMG_OCR_ACT_OCR = 0x0400,
		IMG_OCR_ACT_READ
	};


/******************************************************************************
 ******* C wrapper ************************************************************
 ******************************************************************************/
extern	"C" {


/******************************************************************************
 ******* functions ************************************************************
 ******************************************************************************/
	void	img_ocr_act	(int action, void *data);


/******************************************************************************
 ******* C wrapper ************************************************************
 ******************************************************************************/
}	/* extern "C" */


/******************************************************************************
 ******* include guard ********************************************************
 ******************************************************************************/
# endif			/* img_ocr.hpp */


/******************************************************************************
 ******* end of file **********************************************************
 ******************************************************************************/