Subversion Repositories svn1

Rev

Rev 156 | Rev 161 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 156 Rev 158
Line 294... Line 294...
294
    {
294
    {
295
        pri_all_reports();
295
        pri_all_reports();
296
    }
296
    }
297
}
297
}
298
 
298
 
299
/*========================================================================
-
 
300
 *
-
 
301
 *  Position the cursor on the screen
-
 
302
 *
-
 
303
 *  Purpose:
-
 
304
 *      This function is called to Position the cursor on the screen
-
 
305
 *
-
 
306
 *  Parameters:
-
 
307
 *      x               col number
-
 
308
 *      y               line number
-
 
309
 *
-
 
310
 *  Returns:
-
 
311
 *      Nothing
-
 
312
 *
-
 
313
 *========================================================================*/
-
 
314
 
-
 
315
void cur( int x, int y )
-
 
316
{
-
 
317
}
-
 
318
 
-
 
319
/*========================================================================
-
 
320
 *
-
 
321
 *  Clears the vdu screen
-
 
322
 *
-
 
323
 *  Purpose:
-
 
324
 *      This function is called to Clears the vdu screen
-
 
325
 *      From the Microsoft Web Site
-
 
326
 *
-
 
327
 *  Parameters:
-
 
328
 *      None
-
 
329
 *
-
 
330
 *  Returns:
-
 
331
 *      Nothing
-
 
332
 *
-
 
333
 *========================================================================*/
-
 
334
 
-
 
335
void clearscreen( void )
-
 
336
{
-
 
337
}
-
 
338
#include    <stdio.h>
-
 
339
int printf( const char *format, ... )
-
 
340
{
-
 
341
    va_list     ap;
-
 
342
    char        pp[200];
-
 
343
    int         len;
-
 
344
 
-
 
345
 
-
 
346
 
-
 
347
    va_start( ap, format );
-
 
348
    len = vsprintf( pp, format, ap );
-
 
349
    va_end( ap );
-
 
350
    qDebug("%s",pp);
-
 
351
    return ( len );
-
 
352
}
-
 
353
 
299