•  Back 
  •  Window Library 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  %About 
  •  Show info about hypertext 
  •  View a new file 
Topic       : The ATARI Compendium
Author      : Scott Sanders / JAY Software
Version     : 1.25 (20/6/2003)
Subject     : Documentation
Nodes       : 1117
Index Size  : 32614
HCP-Version : 6
Compiled on : Atari
@charset    : UTF-8
@lang       : en
@default    : 
@help       : %About
@options    : +g -i -t4 +y +z
@width      : 100
View Ref-Filewind_close()
wind_create()
wind_delete()
Window Library
wind_open()                                                             AES

Syntax

WORD wind_open( handle, x, y, w, h )
WORD handle;
WORD x, y, w, h;

Function       wind_open() opens the window specified.

Opcode         101 (0x65)

Availability   All AES versions.

Parameters     handle specifies the handle of the window to open as
               returned by wind_create(). x, y, w, and h specify the
               rectangle into which the rectangle should be displayed.

Binding        intin[0] = handle;
               intin[1] = x
               intin[2] = y
               intin[3] = w
               intin[4] = h

               return crys_if(0x65);

Return Value   wind_open() returns a 0 if an error occurred or non-zero
               otherwise.

Comments       This call will also trigger a WM_REDRAW message which
               encompasses the work area of the window so applications
               should not initially render the work area, rather, wait for
               the message.

See Also       wind_close(), wind_create(), wind_delete()

Group          Window Library