X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/3719f9bdbbeb0b8573b5887edc0aa2c9e835760a..866ee030a930b725a701bd35445b1bcd82506a87:/emufs_gui/gui.h?ds=sidebyside diff --git a/emufs_gui/gui.h b/emufs_gui/gui.h index b2ad520..05f4d70 100644 --- a/emufs_gui/gui.h +++ b/emufs_gui/gui.h @@ -27,5 +27,26 @@ WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...); /** Libera un dialogo creado */ void msg_box_free(WINDOW *padre, WINDOW *win); +typedef struct _param_idx_ { + int tipo_arbol; + long int tam_bloque; +} parametro_indice; + +typedef struct _mis_param_ { + char xml_fact[100]; + char xml_art[100]; + char tipo_arch_fact; + char tipo_arch_art; + char tipo_arch_nota; + long int tam_bloque_fact; + long int tam_bloque_art; + long int tam_bloque_nota; + + /* 0 = codigo, 1=desc, 2=presentacion */ + parametro_indice ind_art[3]; + /* 0 = numero, 1=emision */ + parametro_indice ind_fac[2]; +} t_Parametros; + #endif