-
Notifications
You must be signed in to change notification settings - Fork 0
/
txwnd1.c
31 lines (26 loc) · 1.31 KB
/
txwnd1.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//-----------------------------------------------------------------------| Textfenster Prototyp,
// | txwnd1.c,
// | von Dietmar Schrausser, SCHRAUSSER 2009 //
#include "txwnd2.h" //--------------------------------------------------> hauptheader
main()
{
_setcursortype(_NOCURSOR);//----------------------------------------> unterdrückt cursoranzeige
//------------------------------------------------------------------> datei einlesen
datei_in();
while(1)//----------------------------------------------------------| hauptschleife
{
textbackground(disp);clrscr();
//--------------------------------------------------------------> variablenmonitor
var_inf_();
//--------------------------------------------------------------> fenstererzeugung
fenster_();
//--------------------------------------------------------------> cursorerzeugung
cursor_();
//--------------------------------------------------------------> zuordnung der aktivierten taste
taste=getch();
//--------------------------------------------------------------> ereignisse
ereignisse_();
if(taste == 'Q') break;//---------------------------------------> Q_ende
}
return 0;
}