]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - tipo3/param_cte.h
algunos arreglos... o desarreglos, nunca se sabe
[z.facultad/75.06/emufs.git] / tipo3 / param_cte.h
1 #ifndef _PARAM_CTE_H_
2 #define _PARAM_CTE_H_
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <string.h>
6 #include "interface.h"
7
8 typedef struct param_cte_t {
9         int ID;
10         char num_fac[9];
11         char fecha_emision[9];
12         char fecha_vto[9];
13         char num_remito[9];
14         char estado[2];
15         char FP[2];
16         char Por_DoI[6];
17         char num_cta_cte[6];
18         char num_cheque[19];
19         int texto; /*referencia al texto en otro archivo.*/
20 };
21
22
23 int leer_bloque(int ID, void *, unsigned long tam);
24
25 int leer_registro(int ID, void *, unsigned long tam);
26
27 int grabar_registro(int ID, void *, unsigned long tam);
28
29 int existe_registro(int ID);
30
31 int buscar_registro(int ID);
32
33 int copiar(struct param_cte_t dato, param_cte_t** str);
34 #endif