Eliminate build warnings
[fvs_assignment_project.git] / include / import.h
blob89f5dfcf9ecc9a77e2cd0ca4921fef853ff749f2
1 /*########################################################################
3 The contents of this file are subject to the Mozilla Public License
4 Version 1.0(the "License"); You may NOT use this file except in
5 compliance with the License. You may obtain a copy of the License at
6 http:// www.mozilla.org/MPL/
7 Software distributed under the License is distributed on an "AS IS"
8 basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
9 the License for the specific language governing rights and limitations
10 under the License.
12 The Initial Developer of the Original Code is Shivang Patel.
14 Copyright(C) 2002-2003. All Rights Reserved.
16 Authors: Jaap de Haan(jdh)
18 ########################################################################*/
20 #if !defined FVS__IMPORT_HEADER__INCLUDED__
21 #define FVS__IMPORT_HEADER__INCLUDED__
23 #include "file.h"
24 #include "image.h"
26 /*!
27 Imports a fingeprint image from a file.
28 The image format is deduced from the file contents or filename extension.
29 \param filename the name of the file from which the image should be read
30 \param image the result will be stored in this image
31 \result an error code
33 FvsError_t FvsImageImport(FvsImage_t image, const char *filename);
36 #endif /* FVS__IMPORT_HEADER__INCLUDED__ */