mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
This commit contains only the result of `git add --renormalize .` `git show --ignore-space-change` can verify that this commit only changes whitespace.
19 lines
252 B
C++
19 lines
252 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;
|
|
};
|
|
}
|