win32_gui: implement STATUS_VIA_WINDOWPORT and STATUS_HILITES

This commit is contained in:
Alex Kompel
2015-04-17 22:14:04 -07:00
parent 884b4482a8
commit 09d64059cb
6 changed files with 475 additions and 47 deletions
+8
View File
@@ -22,6 +22,7 @@
#define MSNH_MSG_DIED 109
#define MSNH_MSG_CARET 110
#define MSNH_MSG_GETTEXT 111
#define MSNH_MSG_UPDATE_STATUS 112
typedef struct mswin_nhmsg_add_wnd {
winid wid;
@@ -68,5 +69,12 @@ typedef struct mswin_nhmsg_get_text {
char buffer[];
} MSNHMsgGetText, *PMSNHMsgGetText;
typedef struct mswin_nhmsg_update_status {
int n_fields;
const char** vals;
boolean* activefields;
int* colors;
} MSNHMsgUpdateStatus, *PMSNHMsgUpdateStatus;
#endif