pueden? Condition is always false in function MOSTRAR...
Posted: Fri Aug 04, 2006 1:58 pm
Error al compilar: podrían explicarme?
En este código:
Gracias
Warning source\pipeclte.c 26: Condition is always false in function MOSTRAR
Warning source\pipeclte.c 27: Unreachable code in function MOSTRAR
En este código:
Code: Select all | Expand
#include "winten.h"
#include "windows.h"
#include "clipapi.h"
#ifdef __H__
#define MAX_LEN 50 // esta es la linea 26
#else
#define MAX_LEN 100
#endif
CLIPPER MOSTRAR()
{
if ( MAX_LEN == 50 )
_retc("_har");
else
_retc( "cli" );
}
Gracias