#include <nitro/gx/gx.h>
void GXS_SetVisibleWnd(int window);
window | Specifies a display window using a logical sum from the GXWndMask form |
None.
This function selects a window to display. The function returns the logical sum of GXWndMask
values.
GX_WNDMASK_NONE |
Indicates that nothing is visible. |
GX_WNDMASK_W0 |
Indicates that window 0 is active. |
GX_WNDMASK_W1 |
Indicates that window 1 is active. |
GX_WNDMASK_OW |
Indicates that OBJ window feature is active. |
The type definition of GXWndMask
type is shown below.
typedef enum { GX_WNDMASK_NONE = 0x00, GX_WNDMASK_W0 = 0x01, GX_WNDMASK_W1 = 0x02, GX_WNDMASK_OW = 0x04 } GXWndMask;
GXS_SetVisiblePlane, GXS_GetVisibleWnd
02/09/2004 Initial version