forked from sakura-editor/sakura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCDicMgr.h
53 lines (45 loc) · 1.34 KB
/
CDicMgr.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
/*! @file
@brief CDicMgrクラス定義
@author Norio Nakatani
@date 1998/11/05 作成
*/
/*
Copyright (C) 1998-2001, Norio Nakatani
Copyright (C) 2018-2022, Sakura Editor Organization
This source code is designed for sakura editor.
Please contact the copyright holder to use this code for other purpose.
*/
#ifndef SAKURA_CDICMGR_70378DC4_733D_4F64_8D2A_E23C548E19EB_H_
#define SAKURA_CDICMGR_70378DC4_733D_4F64_8D2A_E23C548E19EB_H_
#pragma once
#include <Windows.h>
#include "util/container.h"
#include "_main/global.h"
class CNativeW;
/*-----------------------------------------------------------------------
クラスの宣言
-----------------------------------------------------------------------*/
class CDicMgr
{
public:
/*
|| Constructors
*/
CDicMgr();
/*
|| Attributes & Operations
*/
// BOOL Open( char* );
static BOOL Search( const wchar_t* pszKey, const int nCmpLen,
CNativeW** ppcmemKey, CNativeW** ppcmemMean,
const WCHAR* pszKeyWordHelpFile, int * pLine ); // 2006.04.10 fon (const int,CMemory**,int*)引数を追加
static int HokanSearch( const wchar_t* pszKey, bool bHokanLoHiCase,
vector_ex<std::wstring>& vKouho, int nMaxKouho,
const WCHAR* pszKeyWordFile );
// BOOL Close( char* );
protected:
/*
|| 実装ヘルパ関数
*/
};
#endif /* SAKURA_CDICMGR_70378DC4_733D_4F64_8D2A_E23C548E19EB_H_ */