2017-03-02 09:28:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
struct PlatformMutex {
|
2017-03-22 17:03:45 +00:00
|
|
|
virtual ~PlatformMutex();
|
2017-03-02 09:28:07 +00:00
|
|
|
};
|
|
|
|
struct PlatformScopedMutexLock {
|
2017-03-22 17:03:45 +00:00
|
|
|
virtual ~PlatformScopedMutexLock();
|
2017-03-02 09:28:07 +00:00
|
|
|
};
|
|
|
|
struct PlatformSharedMemory {
|
2017-03-22 17:03:45 +00:00
|
|
|
virtual ~PlatformSharedMemory();
|
2017-03-19 22:06:22 +00:00
|
|
|
void* data;
|
|
|
|
size_t capacity;
|
2017-03-15 04:59:05 +00:00
|
|
|
std::string name;
|
2017-03-02 09:28:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
std::unique_ptr<PlatformMutex> CreatePlatformMutex(const std::string& name);
|
2017-03-19 22:08:36 +00:00
|
|
|
std::unique_ptr<PlatformScopedMutexLock> CreatePlatformScopedMutexLock(
|
|
|
|
PlatformMutex* mutex);
|
|
|
|
std::unique_ptr<PlatformSharedMemory> CreatePlatformSharedMemory(
|
|
|
|
const std::string& name,
|
|
|
|
size_t size);
|
2017-03-05 19:48:05 +00:00
|
|
|
|
2017-03-25 20:27:28 +00:00
|
|
|
void PlatformInit();
|
2017-03-22 17:03:45 +00:00
|
|
|
std::string GetWorkingDirectory();
|