So how about this ?
type
ListBox*= ref object of Control
items* : ItemsList # all type members are starting at lower case
ItemsList = object
iList* = seq[string]
proc createListBox(me : ListBox) : HWND = # procs starting at lowercase.
RunIs it ok ?
