mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-22 22:45:39 +00:00
19 lines
279 B
C++
19 lines
279 B
C++
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class ResTypeID;
|
|
|
|
struct GpArcResourceTypeTag
|
|
{
|
|
char m_id[13];
|
|
|
|
static GpArcResourceTypeTag Encode(const ResTypeID &tag);
|
|
|
|
bool Load(const char *str, size_t strLen);
|
|
bool Decode(ResTypeID &outTag);
|
|
};
|
|
}
|