function NEXTMEM()
return 0
#pragma BEGINDUMP
#include <Windows.h>
extern "C" { // Line 2109
FILE * _iob[] = { stdin, stdout, stderr };
FILE * __iob_func( void )
{
return ( FILE * ) _iob;
}
}
#pragma ENDDUMP
Severity Code Description Project File Line Suppression State
Error C2059 syntax error: 'string' IcraW C:\PrgW\Icra\MASTER.PRG 2109
FILE * _iob[] = { stdin, stdout, stderr };
Severity Code Description Project File Line Suppression State
Error C2099 initializer is not a constant IcraW C:\PrgW\Icra\MASTER.PRG 2110
#pragma BEGINDUMP
#include <Windows.h>
FILE * _iob[ 3 ];
_iob[ 0 ] = stdin; // Line 2126
_iob[ 1 ] = stdout;
_iob[ 2 ] = stderr;
FILE * __iob_func( void )
{
return ( FILE * ) _iob;
}
#pragma ENDDUMP
Severity Code Description Project File Line Suppression State
Error C2040 '_iob': 'int [0]' differs in levels of indirection from 'FILE *[3]' IcraW C:\PrgW\Icra\MASTER.PRG 2126
Error C2369 '_iob': redefinition; different subscripts IcraW C:\PrgW\Icra\MASTER.PRG 2127
Error C2369 '_iob': redefinition; different subscripts IcraW C:\PrgW\Icra\MASTER.PRG 2128
Error C2466 cannot allocate an array of constant size 0 IcraW C:\PrgW\Icra\MASTER.PRG 2126
Error C2099 initializer is not a constant IcraW C:\PrgW\Icra\MASTER.PRG 2126
Error C2099 initializer is not a constant IcraW C:\PrgW\Icra\MASTER.PRG 2127
Error C2099 initializer is not a constant IcraW C:\PrgW\Icra\MASTER.PRG 2128
#pragma BEGINDUMP
#include <Windows.h>
FILE * __iob_func( void )
{
static FILE * _iob[ 3 ];
_iob[ 0 ] = stdin;
_iob[ 1 ] = stdout;
_iob[ 2 ] = stderr;
return ( FILE * ) _iob;
}
#pragma ENDDUMP
Return to FiveWin for Harbour/xHarbour
Users browsing this forum: Google [Bot] and 78 guests