summaryrefslogtreecommitdiff
path: root/sysdata_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'sysdata_windows.go')
-rw-r--r--sysdata_windows.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/sysdata_windows.go b/sysdata_windows.go
index bf6f31a..16a5069 100644
--- a/sysdata_windows.go
+++ b/sysdata_windows.go
@@ -66,6 +66,15 @@ var classTypes = [nctypes]*classData{
style: _SS_NOPREFIX | controlstyle,
xstyle: 0 | controlxstyle,
},
+ c_listbox: &classData{
+ name: "LISTBOX",
+ style: 0 | controlstyle,
+ xstyle: 0 | controlxstyle,
+ altStyle: _LBS_EXTENDEDSEL | controlstyle,
+ appendMsg: _LB_ADDSTRING,
+ insertAfterMsg: _LB_INSERTSTRING,
+ deleteMsg: _LB_DELETESTRING,
+ },
}
func (s *sysData) addChild(child *sysData) _HMENU {