FontMemResource represents a font resource loaded into memory from the application's resources.
| 14 | // FontMemResource represents a font resource loaded into memory from |
| 15 | // the application's resources. |
| 16 | type FontMemResource struct { |
| 17 | hFontResource win.HANDLE |
| 18 | } |
| 19 | |
| 20 | func newFontMemResource(resourceName *uint16) (*FontMemResource, error) { |
| 21 | hModule := win.HMODULE(win.GetModuleHandle(nil)) |
nothing calls this directly
no outgoing calls
no test coverage detected