git-svn-id: file:///H/repositry/noTahoma/noMeiryoUI/trunk@130 2be31de6-1b40-1d45-9c1f-7f81fcd71ed7
23 lines
494 B
C++
23 lines
494 B
C++
/*
|
|
noMeiryoUI (C) 2005,2012-2016 Tatsuhiko Shoji
|
|
The sources for noMeiryoUI are distributed under the MIT open source license
|
|
*/
|
|
#ifndef UTIL_H
|
|
#define UTIL_H
|
|
|
|
#include <stdlib.h>
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
#include <vector>
|
|
#include "TWR/tstring.h"
|
|
|
|
extern bool WIN8_SIZE;
|
|
extern std::vector<tstring> langResource;
|
|
|
|
|
|
int getFontPointInt(LOGFONT *font, HWND hWnd);
|
|
double getFontPoint(LOGFONT *font, HWND hWnd);
|
|
void readResourceFile(TCHAR *file);
|
|
|
|
#endif
|