Function OpenWindow

Top 

Declaration:

unsigned long OpenWindow(int type);

Description

Opens the specified window type (disassembler, dump, etc.). The constants to describe the window types are declared in the system.h header file:

 

  WIN_CONSOLE      - Console

  WIN_DUMP        - Memory Dump

  WIN_AUTO_WATCHES   - AutoWatches

  WIN_INSPECT      - Inspector

  WIN_SF_SOURCE    - Script source

  WIN_STREAM      - I/O stream

  WIN_USER        - User window

 

The View menu gives access to the available windows.

The window will be opened, if an instruction of the View menu is executed. If you need to move a window and/or change its size, use the SetWindowSize, SetWindowSizeT, or MoveWindow functions.

Returned value

The identifier of the opened window. It can be transferred as a parameter to other window operation functions.

For Windows programmers: identifier is a window HWND.