static t_Articulo *art_form_buscar(WINDOW *win);
-static void *procesar_guardar_articulo(t_Articulo *src, int *size, t_LstArticulos *lst);
-static int procesar_leer_articulo(t_Articulo *dst, void *src, int size, t_LstArticulos *lst);
+static void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst);
+static int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst);
t_LstArticulos *art_cargar(const char *filename)
{
xmlDocPtr document;
xmlNode *node, *inicio;
- int cant, size, error = 0, i, id;
+ int cant, error = 0, i, id;
+ EMUFS_REG_SIZE size;
void *save;
t_LstArticulos *tmp;
lst_articulos = NULL;
/* leo los datos y los guardo en el archivo*/
cant = 0;
/* FIXME : por ahora hago que entren 2 bloques y me sobre algo de espacio*/
- tmp->fp = emufs_crear("articulos", T1, sizeof(t_Articulo)*2, sizeof(t_Articulo));
+ tmp->fp = emufs_crear("articulos", T2, sizeof(t_Articulo)*2, sizeof(t_Articulo));
for (node=inicio ; node ; node = node->next) {
if (node->type == XML_ELEMENT_NODE) {
if (strcmp(node->name, "ARTICULO") == 0) {
{
WINDOW *win;
t_Articulo *articulo;
-
+ int i;
win = newwin(8, COLS-2, 13, 1);
box(win, 0, 0);
wrefresh(win);
wrefresh(win);
getch();
} else {
- /* TODO : Eliminar un registro */
+ for(i=0; i<lst_articulos->cant; i++) {
+ if (lst_articulos->array[i].numero == articulo->numero) {
+ lst_articulos->array[i].numero = -1;
+ lst_articulos->fp->borrar_registro(lst_articulos->fp, lst_articulos->array[i].num_reg);
+ break;
+ }
+ }
+ free(articulo);
}
werase(win);
t_Form *form;
t_Articulo art;
void *save;
- int error = 0, size, existe, i;
+ int error = 0, existe, i;
+ EMUFS_REG_SIZE size;
win = newwin(8, COLS-2, 13, 1);
box(win, 0, 0);
delwin(win);
}
-int procesar_leer_articulo(t_Articulo *dst, void *src, int size, t_LstArticulos *lst)
+int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
{
char *fin, *ini;
switch (lst->fp->tipo) {
return 1; /* Todo ok */
}
-void *procesar_guardar_articulo(t_Articulo *src, int *size, t_LstArticulos *lst)
+void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
{
char *tmp=NULL;
int i[6];