mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
19 lines
270 B
C++
19 lines
270 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
struct MMHandleBlock;
|
|
|
|
struct ResourceCompiledRef
|
|
{
|
|
const uint8_t *m_resData;
|
|
int16_t m_resID;
|
|
int16_t m_resNameOffset;
|
|
uint8_t m_attributes;
|
|
|
|
uint32_t GetSize() const;
|
|
};
|
|
}
|