aboutsummaryrefslogtreecommitdiff
path: root/c/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/common.c')
-rw-r--r--c/common.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/c/common.c b/c/common.c
index 7ee27ff..a056993 100644
--- a/c/common.c
+++ b/c/common.c
@@ -4,26 +4,6 @@
#include "resource.h"
#include "defs.h"
-/* Scale integer according to DPI. */
-int Dpi(int i)
-{
- extern int IDPI;
-
- if (IDPI == -1) {
- HMODULE hModule;
- FARPROC GetDpiForWindow;
- extern HWND HWnd;
- IDPI = 96;
- hModule = LoadLibrary(TEXT("User32.dll"));
- if (hModule && (GetDpiForWindow = GetProcAddress(hModule, "GetDpiForWindow"))) {
- IDPI = GetDpiForWindow(HWnd);
- FreeLibrary(hModule);
- }
- }
-
- return MulDiv(i, IDPI, 96);
-}
-
/* Convert normal string to TSTR using given codepage. */
TCHAR *
TszFromSz(const char *sz, int iCp)