annotate horori/searcher/include/utils.h @ 5:519d6fd0bfd9
draft
searcher: bug fix. fcgo: new feature.
author |
pyon <pyon@macmini> |
date |
Tue, 15 Jun 2021 18:32:28 +0900 |
parents |
aaaa401818a1 |
children |
|
rev |
line source |
0
|
1 // Filename : utils.h
|
|
2 // Last Change: 2020-06-26 ‹à 09:09:48.
|
|
3 //
|
|
4 #pragma once
|
|
5
|
|
6 #include <wx/wx.h>
|
|
7
|
|
8 wxRect Geo2Rect(wxString geo);
|
|
9 wxRect ZeroRect();
|
|
10 bool TarDir(wxString dir, wxString tarfile);
|
|
11 bool Gzip(wxString infile, wxString gzfile);
|
|
12 wxString XoR(wxString s, int x);
|
|
13 bool IsHiragana(wxString s);
|
|
14 bool IsKatakana(wxString s);
|
|
15 wxString Hiragara2Katakana(wxString s);
|
|
16
|