Files
Aerofoil/PortabilityLayer/GPArchive.h
2021-05-07 02:16:25 -04:00

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