(className string, wndProcPtr uintptr)
| 472 | } |
| 473 | |
| 474 | func MustRegisterWindowClassWithWndProcPtr(className string, wndProcPtr uintptr) { |
| 475 | MustRegisterWindowClassWithWndProcPtrAndStyle(className, wndProcPtr, 0) |
| 476 | } |
| 477 | |
| 478 | func MustRegisterWindowClassWithWndProcPtrAndStyle(className string, wndProcPtr uintptr, style uint32) { |
| 479 | if registeredWindowClasses[className] { |
no test coverage detected
searching dependent graphs…