Textractor/GUI/misc.h

9 lines
493 B
C
Raw Normal View History

2018-12-01 19:12:45 -05:00
#pragma once
2018-07-25 21:48:18 -07:00
2018-08-22 12:24:55 -04:00
#include "qtcommon.h"
2018-07-25 21:48:18 -07:00
2019-02-02 16:54:13 -05:00
struct QTextFile : QFile { QTextFile(const QString& name, QIODevice::OpenMode mode) : QFile(name) { open(mode | QIODevice::Text); } };
2018-12-22 16:17:08 -05:00
inline std::wstring S(const QString& S) { return { S.toStdWString() }; }
inline QString S(const std::wstring& S) { return QString::fromStdWString(S); }
inline HMODULE LoadLibraryOnce(std::wstring fileName) { if (HMODULE module = GetModuleHandleW(fileName.c_str())) return module; return LoadLibraryW(fileName.c_str()); }