(className string, style uint32)
| 468 | } |
| 469 | |
| 470 | func MustRegisterWindowClassWithStyle(className string, style uint32) { |
| 471 | MustRegisterWindowClassWithWndProcPtrAndStyle(className, defaultWndProcPtr, style) |
| 472 | } |
| 473 | |
| 474 | func MustRegisterWindowClassWithWndProcPtr(className string, wndProcPtr uintptr) { |
| 475 | MustRegisterWindowClassWithWndProcPtrAndStyle(className, wndProcPtr, 0) |
nothing calls this directly
no test coverage detected
searching dependent graphs…