| 696 | |
| 697 | |
| 698 | unsigned util::scale_uint(unsigned val) |
| 699 | { |
| 700 | const static double dpi {static_cast<double>(nana::API::screen_dpi(true))}; |
| 701 | if(dpi != 96) |
| 702 | val = round(val * dpi / 96); |
| 703 | return val; |
| 704 | } |
| 705 | |
| 706 | |
| 707 | util::INTERNET_STATUS util::check_inet_connection() |
nothing calls this directly
no outgoing calls
no test coverage detected