-
Notifications
You must be signed in to change notification settings - Fork 3
Windows (Окна)
Darkclainer edited this page Nov 4, 2012
·
1 revision
В Nox-e есть свои специальные окна, со своей особой структурой. (файлы windows.cpp, windowsMsg.cpp, windowsUniMod.h,windowsUniModFunction.cpp)
Для всех окон характерна определенная структура, а именно
struct wndStruct
{ int wndId; int flags; int width; int height; int screenLeft; int screenTop; int screenRight; int screenBottom; void *someData; wddControl drawData; int wndIdMB; void *wndProc; void *wndProcPre; void *drawFn; void *onHoverFnMB; struct wndStruct *nextWnd; struct wndStruct *nextSibilingMB; struct wndStruct *parentWindow; struct wndStruct *firstChild; };