]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - gui/articulos.h
1c1e87f5d67e9cd76b788eadbdd348b8b86a483d
[z.facultad/75.06/emufs.git] / gui / articulos.h
1
2 #ifndef _ARTICULOS_H_
3 #define _ARTICULOS_H_
4
5 #include <libxml/parser.h>
6 #include <libxml/tree.h>
7 #include <string.h>
8
9 /* FACTURAS!!
10         char numero[9];
11         char emision[9];
12         char vencimiento[9];
13         char numero_remito[9];
14         char estado[3];
15         char fp[3];
16         char procdoi[6];
17         char ctacte[6];
18         char cheque[19];
19         char *nota;
20 */
21         
22 typedef struct _articulo_ {
23         char numero[9];
24         char desc[51];
25         char presentacion[31];
26         char existencia[9];
27         char ubicacion[31];
28         char pvu[9];
29         char emin[9];
30 } t_Articulo;
31
32 typedef struct _lista_articulos_ {
33         t_Articulo *array;
34         unsigned int cant;
35 } t_LstArticulos;
36
37 t_LstArticulos *art_cargar(const char *filename);
38 int art_liberar(t_LstArticulos *l);
39 t_Articulo *art_obtener(t_LstArticulos *, const char *numero);
40 //t_Articulo *art_obtener(t_LstArticulos *, int numero);
41
42 #endif
43