My Project
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
default_ICD.h
Go to the documentation of this file.
1 /*
2  * default_ICD.h
3  *
4  * Created on: 25/05/2012
5  * Author: ccortiz
6  */
7 
8 #ifndef DEFAULT_ICD_H_
9 #define DEFAULT_ICD_H_
10 
11 #define _MAX_ICD_INSTANCES_ 2
12 
13 #include "mensaje1.h"
14 #include "mensaje2.h"
15 #include "mensaje3.h"
16 
17 #include "bitStack.h"
18 
20 typedef int (*searchPtr)(int ICD_Descriptor, byte_ptr buffer, unsigned int length);
21 
26 
29 };
30 
31 
36 };
37 
38 struct c_DEFAULT_ICD Default_ICD; /* Manejador de ICDs. Solo debe existir uno. */
39 int new_Default_ICD(void);
40 
41 /*TODO poner aqui la herramienta de busqueda de mensajes e inicializar el puntero de c_ICD.*/
42 
43 #endif /*DEFAULT_ICD_H_*/
44