Dec 072017
 
Simple C windowing routines that work from Borland.
File BLMENU.ZIP from The Programmer’s Corner in
Category C Source Code
Simple C windowing routines that work from Borland.
File Name File Size Zip Size Zip Type
BIWIN.C 214 142 deflated
CJWIN.H 1107 492 deflated
IMWIN.C 2632 849 deflated
MKWIN.C 6258 1820 deflated
SFWIN.C 1923 717 deflated
WINDOW.DOC 2357 647 deflated
WRWIN.C 1375 568 deflated
_WINDOW.H 765 240 deflated

Download File BLMENU.ZIP Here

Contents of the WINDOW.DOC file


These routines were written by Chuck Jazdzewski of Borland International.

-------------------------------------------------------------------------
makewindow
-------------------------------------------------------------------------
Function Creates a window and makes it current

Syntax windowtype *makewindow( int left, int top,
int right, int bottom,
unsigned char attrib,
unsigned char style, char *title )

Prototype window.h

Remarks The coordinates DO NOT include the border, so the largest
allowable window is 2,2 through 79,24.
Style: 0=non-graphics border
1=single line border
2=double line border
3=single line horizontals, double line verticals

Return Value on error, makewindow returns NULL and sets windowerr:
1 = Out of Memory
2 = Invalid Coordinates

-------------------------------------------------------------------------
deletewindow
-------------------------------------------------------------------------
Function Deletes a window from memory and the screen

Syntax int deletewindow( windowtype *winptr )

Prototype in window.h

Remarks Only a current window may be deleted

Return Value deletewindow return 0 on success, -1 on failure

-------------------------------------------------------------------------
winwrite
-------------------------------------------------------------------------
Function Writes a string to the specified window

Syntax void winwrite( windowtype *winptr, char *string )

Prototype in window.h

Remarks If the speicified window is in the backgorund,
winwrite will write the string to memory so that it
will show up when the window is made current

-------------------------------------------------------------------------
shiftwindow
-------------------------------------------------------------------------
Function Makes a new window current

Syntax int shiftwindow( windowtype *winptr )

Return Values shiftwindow return 0 on success, 1 for Out of Memory


 December 7, 2017  Add comments

 Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)