-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathOrinrinCollector.h
74 lines (56 loc) · 2.89 KB
/
OrinrinCollector.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*! @file
@brief アプリ全体で使う定数や函数です
このファイルは OrinrinCollector.h です。
@author SikigamiHNQ
@date 2011/10/06
*/
/*
Orinrin Collector : Clipboard Auto Stocker for Japanese Only
Copyright (C) 2011 - 2012 Orinrin/SikigamiHNQ
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program.
If not, see <http://www.gnu.org/licenses/>.
*/
//-------------------------------------------------------------------------------------------------
#pragma once
#define STRICT
#include "resource.h"
//-------------------------------------------------------------------------------------------------
// このコード モジュールに含まれる関数の宣言
ATOM InitWndwClass( HINSTANCE );
BOOL InitInstance( HINSTANCE, INT );
LRESULT CALLBACK WndProc( HWND, UINT, WPARAM, LPARAM );
BOOLEAN Cls_OnCreate( HWND, LPCREATESTRUCT ); //!< 本体の WM_CREATE の処理・固定Editとかつくる
VOID Cls_OnCommand( HWND , INT, HWND, UINT ); //!< 本体の WM_COMMAND の処理
VOID Cls_OnPaint( HWND ); //!< 本体の WM_PAINT の処理・枠線描画とか
VOID Cls_OnDestroy( HWND ); //!< 本体の WM_DESTROY の処理・BRUSHとかのオブジェクトの破壊を忘れないように
HBRUSH Cls_OnCtlColor( HWND , HDC, HWND, INT ); //!<
VOID Cls_OnHotKey( HWND, INT, UINT, UINT ); //!<
VOID Cls_OnDrawClipboard( HWND ); //!<
VOID Cls_OnChangeCBChain( HWND, HWND, HWND ); //!<
VOID WndTagSet( HWND, LONG_PTR ); //!<
LONG_PTR WndTagGet( HWND ); //!<
BOOLEAN SelectFileDlg( HWND, LPTSTR, UINT_PTR ); //!<
HRESULT ToolTipSetting( HWND, UINT, LPTSTR ); //!<
HRESULT TasktrayIconAdd( HWND ); //!<
VOID TaskTrayIconEvent( HWND, UINT, UINT ); //!<
HRESULT TaskTrayIconCaptionChange( HWND ); //!<
HRESULT TaskTrayIconBalloon( HWND, LPTSTR, LPTSTR, DWORD ); //!<
INT InitParamValue( UINT, UINT, INT ); //!<
HRESULT InitClipStealOpen( UINT, UINT, LPTSTR ); //!<
HRESULT InitSettingSave( HWND, UINT ); //!<
HRESULT FileListViewInit( HWND ); //!<
INT FileListViewAdd( HWND, LPTSTR ); //!<
HRESULT FileListViewGet( HWND, INT, LPTSTR ); //!<
INT FileListViewDelete( HWND ); //!<
BOOLEAN FileTypeCheck( LPTSTR ); //!<
HMENU CreateFileSelMenu( HWND, UINT ); //!<
HRESULT ClipStealDoing( HWND ); //!<
LPTSTR ClipboardDataGet( LPVOID ); //!<
UINT RegHotModExchange( UINT , BOOLEAN ); //!<
LPTSTR SjisDecodeAlloc( LPSTR ); //!<
LPSTR SjisEncodeAlloc( LPCTSTR ); //!<
LPSTR SjisEntityExchange( LPCSTR ); //!<
TCHAR UniRefCheck( LPSTR ); //!<