FreeBASIC  0.91.0
io_maxrow.c
Go to the documentation of this file.
1 #include "../fb.h"
2 #include <conio.h>
3 
4 int fb_ConsoleGetMaxRow( void )
5 {
6  struct text_info ti;
7  gettextinfo( &ti );
8  return ti.screenheight;
9 }