forked from keizi666/charu3
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
OptFifo.h
74 lines (59 loc) · 1.95 KB
/
OptFifo.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
/*----------------------------------------------------------
履歴FIFO設定クラスヘッダ
2002/11/16 (c)Keizi
----------------------------------------------------------*/
#if !defined(AFX_OPTFIFO_H__63AED525_A07B_429F_B89E_2A8964C05622__INCLUDED_)
#define AFX_OPTFIFO_H__63AED525_A07B_429F_B89E_2A8964C05622__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "stdafx.h"
#include "resource.h"
//---------------------------------------------------
// COptFifo ダイアログ
//---------------------------------------------------
class COptFifo : public CDialog
{
// コンストラクション
public:
COptFifo(CWnd* pParent = NULL); // 標準のコンストラクタ
// ダイアログ データ
private:
//{{AFX_DATA(COptFifo)
enum { IDD = IDD_SETTINGS_04_STOCKMODE };
// メモ: ClassWizard はこの位置にデータ メンバを追加します。
//}}AFX_DATA
// オーバーライド
// ClassWizard は仮想関数のオーバーライドを生成します。
public:
//{{AFX_VIRTUAL(COptFifo)
virtual BOOL PreTranslateMessage(MSG* pMsg);
virtual BOOL DestroyWindow();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV サポート
//}}AFX_VIRTUAL
// インプリメンテーション
private:
void Play(int id);
void File(int id);
int m_nAutoOff;
int m_nCleanup;
int m_nDontSaveSameDataAsLast;
CString m_strCopySound;
CString m_strPasteSound;
// 生成されたメッセージ マップ関数
protected:
//{{AFX_MSG(COptFifo)
afx_msg void OnPlayCopy();
afx_msg void OnPlayPaste();
afx_msg void OnFileCopy();
afx_msg void OnFilePaste();
afx_msg void OnNoSoundCopy();
afx_msg void OnNoSoundPaste();
afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ は前行の直前に追加の宣言を挿入します。
#endif // !defined(AFX_OPTFIFO_H__63AED525_A07B_429F_B89E_2A8964C05622__INCLUDED_)