#include <nitro/gx/gx.h>
void GX_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;
GX_SetVisiblePlane, GX_GetVisibleWnd
01/19/2004 Initial version