Files

17 lines
243 B
C
Raw Permalink Normal View History

#pragma once
namespace PortabilityLayer
{
class ResTypeID;
struct GpArcResourceTypeTag
{
char m_id[13];
static GpArcResourceTypeTag Encode(const ResTypeID &tag);
bool Load(const char *str);
bool Decode(ResTypeID &outTag);
};
}