-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSharedMemWin.h
More file actions
58 lines (41 loc) · 1.28 KB
/
SharedMemWin.h
File metadata and controls
58 lines (41 loc) · 1.28 KB
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
// SharedMemWin.h : SharedMemWin アプリケーションのメイン ヘッダー ファイル
//
#pragma once
#ifndef __AFXWIN_H__
#error "PCH に対してこのファイルをインクルードする前に 'stdafx.h' をインクルードしてください"
#endif
#include "resource.h" // メイン シンボル
#include "MainFrm.h"
#include "SharedMemWinDoc.h"
#include "SharedMemWinView.h"
#include "WinSMTool.h"
#include "SHM_thread.h"
class CSharedMemWinApp : public CWinApp
{
public:
CSharedMemWinApp();
~CSharedMemWinApp();
public:
CMainFrame* pMainFrame;
CSharedMemWinDoc* pMainDoc;
CSharedMemWinView* pMainView;
jbxwl::CWinSharedMem* pShm;
ShmParam m_shmparam;
CWinThread* p_shm_thr;
int m_state;
public:
protected:
// オーバーライド
public:
virtual BOOL InitInstance();
afx_msg void OnLogSave();
afx_msg void OnLogSaveAs();
afx_msg void OnEditCopy();
afx_msg void SHM_Start();
afx_msg void SHM_Stop();
afx_msg void SHM_Setting();
afx_msg void OnLogClear();
afx_msg void OnAppAbout();
DECLARE_MESSAGE_MAP()
};
extern CSharedMemWinApp theApp;