| typedef struct vv_app_struct | /*Defined in vv_app.h | */ | ||
| { | ||||
| UINT | tag; | /*Sentinel | */ | |
| FORMPTR | MainForm; | |||
| HICON | AppIcon; | /*Icon Handle | (Windows only) | */ |
| HANDLE | hInstance; | /*Instance Handle | (Windows only) | */ |
| LFONTPTR | hFont; | /*Application font | (Web only) | */ |
| HFONT | hFont; | /*Application font | (Windows only) | */ |
| LPSTR | Title; | /*Application Title | */ | |
| WINDOWPTR | curwnp; | /*WNP for current processing func | */ | |
| WINDOWPTR | topwnp; | /*top WNP in the Z-Order | */ | |
| int | cellHeight; | |||
| int | cellWidth; | |||
| UINT | sysTimerVal; | |||
| ULONG | flags; | |||
| ULONG | flagsEx; | |||
| int | state; | |||
| int | lastError; | /* | */ | |
| int | csr_row, csr_col; | |||
| int | last_row, last_col; | |||
| UINT | moustate; | /*current mouse state | */ | |
| ATTLOOKUP | attribs_color, attribs_mono; | /*ATT lookup | (Windows only) | */ |
| LFONTPTR | font_table; | |||
| MARK_LOC | *mark_loc; | |||
| PTR | userp; | |||
| ULONG | userLong; | |||
| } VV_APP, *VV_APPPTR; | ||||