| 15 | ) |
| 16 | |
| 17 | type Menu struct { |
| 18 | hMenu win.HMENU |
| 19 | window Window |
| 20 | actions *ActionList |
| 21 | getDPI func() int |
| 22 | } |
| 23 | |
| 24 | func newMenuBar(window Window) (*Menu, error) { |
| 25 | hMenu := win.CreateMenu() |
nothing calls this directly
no outgoing calls
no test coverage detected