#include <omicron.h>
Data Fields | |
| HINSTANCE | hInstance |
| ulong | wnd |
| window handle (HWND/Window) | |
| const char * | wndclassname |
| const char * | wndtitle |
| ushort | hres |
| Size of window. | |
| ushort | vres |
| Size of window. | |
| int | argc |
| Argument count. | |
| char ** | argv |
| Argument list. | |
| char | bpp |
| display format | |
| char | zbuffer |
| display format | |
| char | stencil |
| display format | |
| bool | nosound |
| disable sound? | |
| bool | nogfx |
| disable gfx? | |
| bool | noinput |
| disable input? | |
| bool | fullscreen |
| fullscreen? | |
| bool | nolog |
| dont write log file | |
Definition at line 292 of file omicron.h.
|
|
If true, the application is running in fullscreen mode. You may set it to false at initialization time to prevent fullscreen. Default = 1. |
|
|
(WIN) current instance Keeps the current instance of the process. |
|
|
If true, graphics was not initialized. You may set it to true at initialization time to disable graphics. Default = 0. |
|
|
If true, input was not initialized. You may set it to true at initialization time to disable input. Default = 0. |
|
|
If true, a log file won't be created or written to. |
|
|
If true, sound was not initialized. You may set it to true at initialization time to disable sound. Default = 0. |
|
|
These members give you some information about the display format. You may set them to choose a specific format at initialization time. Defaults: bpp = 32, zbuffer = 24, stencil = 1. If the specified format is not found Omicron chooses the next closest match. |
|
|
Horizontal and vertical resolution/size of window. Defaults: hres = 640, vres = 480. |
|
|
(WIN) this is the HWND of the window. (X11) this is the Identifier of the window. If you set it to a nonzero value in gv.init_vars, Omicron will use the specified window for output. Otherwise Omicron creates one itself and stores its handle/id here. |
|
|
Classname for window The name of the window. If none given it will default to "_OMICRON". |
|
|
Title of window The title of the window. If none given it will default to "OMICRON TEST APPLICATION". |
1.2.18