JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
WinSMTool.h
Go to the documentation of this file.
1#pragma once
2
3#ifndef _WIN32_WINNT
4#define _WIN32_WINNT _WIN32_WINNT_MAXVER
5#endif
6
7
8#include <afxmt.h>
9#include "buffer.h"
10
11#define JBXWL_DEFAULT_SMNAME "JBXWL_WinSharedMemory"
12#define JBXWL_DEFAULT_SMSZIE 4096
13
14
15//
16namespace jbxwl {
17
18
20{
21public:
22 CWinSharedMem(void);
23 CWinSharedMem(const char* name, int size = JBXWL_DEFAULT_SMSZIE);
24 virtual ~CWinSharedMem(void);
25
26protected:
27 HANDLE m_hMapping = NULL; // メモリマップドファイルのハンドル
28 HANDLE m_hMapping_sz = NULL; // サイズ用メモリマップドファイルのハンドル
29 void* m_pMappingView = NULL; // ファイルのビューへのポインタ
30 void* m_pMappingView_sz = NULL; // サイズ用ファイルのビューへのポインタ
31 CMutex* m_pMutex = NULL; // ミューテックスオブジェクト
32
33public:
34 int get();
35 void put();
36 Buffer* buf;
37};
38
39
40
46
47void open_shm_debuger(void);
48void close_shm_debuger(void);
49
50
51
52
53} // namespace
#define JBXWL_DEFAULT_SMSZIE
Definition WinSMTool.h:12
virtual ~CWinSharedMem(void)
Definition WinSMTool.cpp:44
CWinSharedMem * _Debug_SHM
////////////////////////////////////////////////////////////
void open_shm_debuger(void)
void close_shm_debuger(void)