home *** CD-ROM | disk | FTP | other *** search
-
-
-
-
- ╔═══════════════════════════════════════╗
- ║ Integer: 0 ║
- ║ Char: 1 ║
- ║ Float: 2 ║
- ║ String: 3 ║
- ║ Editor: 4 ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ╚═══════════════════════════════════════╝
-
-
-
-
-
-
-
- YELLOW
- BLACK
- WHITE
- BLUE
- BLUE
- LIGHTGRAY
- BLUE
- LIGHTGRAY
-
- displayme
- fillme()
- editme()
-
-
-
-
- 0
-
- i
- myint
- 6
-
- gotoxy(#X,#Y); cprintf("%#Wd",#N);
- rcode = getint(#X,#Y,N,#W);
- 32 5 0
- c
- mychar
-
-
- gotoxy(#X,#Y); cprintf("%c",#N);
- rcode = getachar(#X,#Y,N);
- 32 6 1
- f
- myfloat
- 6
- 2
- gotoxy(#X,#Y); cprintf("%#W.#Dd",#N);
- rcode = getfloat(#X,#Y,N,#W,#D);
- 32 7 2
- s
- mystring
- 25
-
- gotoxy(#X,#Y); cprintf("%-#Ws",#N);
- rcode = getstring(#X,#Y,&col,#N,#W);
- 32 8 3
- ed
- myed
- 25
- 5
- redraw((char*)#N,#X,#Y,#W,#D);
- rcode = edit((char*)#N,#X,#Y,&xp,&yp,#W,#D);
- 32 9 4
-