mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 13:50:04 +00:00
54a76f6e0c
(as usual, work-in-progress)
40 lines
736 B
C++
40 lines
736 B
C++
#ifndef WIN32_SHARED_MEMORY_H
|
|
#define WIN32_SHARED_MEMORY_H
|
|
|
|
#include "SharedMemoryInterface.h"
|
|
|
|
|
|
|
|
class Win32SharedMemory : public SharedMemoryInterface
|
|
{
|
|
|
|
struct Win32SharedMemoryInteralData* m_internalData;
|
|
|
|
public:
|
|
Win32SharedMemory();
|
|
virtual ~Win32SharedMemory();
|
|
|
|
virtual void* allocateSharedMemory(int key, int size, bool allowCreation);
|
|
virtual void releaseSharedMemory(int key, int size);
|
|
|
|
};
|
|
|
|
class Win32SharedMemoryServer : public Win32SharedMemory
|
|
{
|
|
public:
|
|
Win32SharedMemoryServer();
|
|
virtual ~Win32SharedMemoryServer();
|
|
|
|
};
|
|
|
|
class Win32SharedMemoryClient : public Win32SharedMemory
|
|
{
|
|
public:
|
|
Win32SharedMemoryClient();
|
|
virtual ~Win32SharedMemoryClient();
|
|
|
|
};
|
|
|
|
|
|
#endif //WIN32_SHARED_MEMORY_H
|