Main Page   Alphabetical List   Data Structures   File List   Data Fields   Globals  

image_Pvf_id.c

Go to the documentation of this file.
00001 /*
00002  *    gui - [gega user interface] the flexible solution for user interface problems
00003  *    Copyright (C) 2002  Gergely Gati
00004  *
00005  *    This program is free software; you can redistribute it and/or modify
00006  *    it under the terms of the GNU General Public License as published by
00007  *    the Free Software Foundation; version 2 of the License.
00008  *
00009  *    This program is distributed in the hope that it will be useful,
00010  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  *    GNU General Public License for more details.
00013  *
00014  *    You should have received a copy of the GNU General Public License
00015  *    along with this program; if not, write to the Free Software
00016  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00017  *
00018  *    Gergely Gati
00019  *      email:           g.gati@freemail.hu
00020  *      AIM screenname:  GatiGergely
00021  *      ICQ number:      93131690
00022  *
00023  */
00024 #include "Image.h"
00025 #include "Bases.h"
00026 #include "Module.h"
00027 #include "debug.h"
00028 #include "Common.h"
00029 
00030 static bases_Modules_t *api;
00031 VERSION("Pvf.image_id",1,0,"Gergely Gati","g.gati@freemail.hu");
00032 
00033 static int pvf_Recognize(u8 *data, int data_size)
00034 {
00035   int ret=-1;
00036 
00037   debug_Begin();
00038 
00039   if(data[0]=='P'&&data[1]=='V'&&data[2]=='E'&&data[3]=='C') ret=0;
00040 
00041   debug_End();
00042 
00043   return(ret);
00044 }
00045 
00046 
00047 static int pvf_Init(u32 module)
00048 {
00049   int ret=-1;
00050   ret=api->img_Call(IMG_REGISTERFORMAT,
00051                 TAG_IMG_NAME,(u32)"pvf",
00052                 TAG_IMG_MODULE,module,
00053                 TAG_IMG_IMG_RECOGNIZE,pvf_Recognize,
00054                 TAG_DONE);
00055   return(ret);
00056 }
00057 
00058 EXPORT int module_Init(u32 module, bases_Modules_t *bases)
00059 {
00060     api=bases;
00061     return(pvf_Init(module));
00062 }

Generated on Tue Jan 7 12:11:22 2003 for THEGUI by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002