Files
Aerofoil/PortabilityLayer/ResourceCompiledRef.h
Diomendius 1b18a87495 Normalize line endings
This commit contains only the result of `git add --renormalize .`

`git show --ignore-space-change` can verify that this commit only
changes whitespace.
2024-07-31 20:21:47 +12:00

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;
};
}