#include <io.h>
#include <dir.h>
#include <alloc.h>
#include <conio.h>
#include <string.h>
#include <stdlib.h>
#include <graphics.h>

#include "c:\program\src_dos\libs\make_bot\make_bot.h"
#include "c:\program\src_dos\libs\bdatos\bdatos.hh"
#include "tpv_def.h"

/*
BDatos           BClt;  // Base de datos de Clientes
INFO_EMPRESAS    SClt;  // Estructura de Clientes
*/

 /*************************************\
|                                       |
|      Parte Principal del M¢dulo       |
|                                       |
 \*************************************/


 /*************************************\
|                                       |
|     Parte Secundaria del M¢dulo       |
|                                       |
|     Secci¢n para escoger Empresa      |
|                                       |
 \*************************************/


 /*************************************\
|                                       |
|       Parte Tercera del M¢dulo        |
|                                       |
|      Secci¢n para la impresi¢n        |
|                                       |
 \*************************************/




//  ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß
// Û                     Parte principal del m¢dulo                       Û
//  ÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜ


 /**************************************************************************\
|*                                                                          *|
|*  DatosClientes                                                           *|
|*                                                                          *|
|*  Descripci¢n:                                                            *|
|*              Inicializaci¢n y consultas global de la fichas de Clientes  *|
|*                                                                          *|
|*  Entradas: (ninguna)                                                     *|
|*  Salidas:  (ninguna)                                                     *|
|*                                                                          *|
 \**************************************************************************/
void DatosClientes(void)
{
 char buffer[100], ok = 0;
 int BPush, key;

 char oldCol = -1;
 char CurrRow;         // Linea sobre la que estamos
 char CurrCol;         // Columna sobre la que estamos
 long CurrClt;         // Cliente sobre el que estamos posicionados a golpes

 // Rellenamos la pantalla con un fondo atractivo...
 setfillstyle( Config.FillBgS, Config.FillBgC ); bar( 0, 0, 640, 480 );
 Imprime_Estaticos( 160, "systm\\Tpv.img");


 getch();
}