libfprint
aeslib.h
1 /*
2  * Shared functions between libfprint Authentec drivers
3  * Copyright (C) 2007 Daniel Drake <dsd@gentoo.org>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19 
20 #ifndef __AESLIB_H__
21 #define __AESLIB_H__
22 
23 #include <fp_internal.h>
24 
25 struct aes_regwrite {
26  unsigned char reg;
27  unsigned char value;
28 };
29 
30 struct fpi_frame;
31 struct fpi_frame_asmbl_ctx;
32 
33 typedef void (*aes_write_regv_cb)(struct fp_img_dev *dev, int result,
34  void *user_data);
35 
36 void aes_write_regv(struct fp_img_dev *dev, const struct aes_regwrite *regs,
37  unsigned int num_regs, aes_write_regv_cb callback, void *user_data);
38 
39 unsigned char aes_get_pixel(struct fpi_frame_asmbl_ctx *ctx,
40  struct fpi_frame *frame,
41  unsigned int x,
42  unsigned int y);
43 
44 #endif
45 
Definition: assembling.h:33
Definition: assembling.h:27
Definition: aeslib.h:25