mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
Lots of stuff
This commit is contained in:
20
PortabilityLayer/HostMemoryBuffer.h
Normal file
20
PortabilityLayer/HostMemoryBuffer.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
#ifndef __PL_HOST_MEMORYBUFFER_H__
|
||||
#define __PL_HOST_MEMORYBUFFER_H__
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "CoreDefs.h"
|
||||
|
||||
namespace PortabilityLayer
|
||||
{
|
||||
class HostMemoryBuffer
|
||||
{
|
||||
public:
|
||||
virtual void *Contents() = 0;
|
||||
virtual size_t Size() = 0;
|
||||
virtual void Destroy() = 0;
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user