public static void ExpandYAY0(YAY0 *header, VoidPtr dstAddress, int dstLen)
        {
            byte *
                codes  = (byte *)header + 0x10,
                counts = (byte *)header + header->_countOffset,
                srcPtr = (byte *)header + header->_dataOffset;

            Expand(ref srcPtr, ref codes, ref counts, (byte *)dstAddress, dstLen);
        }
Exemplo n.º 2
0
 public static void Expand(YAY0 *header, VoidPtr dstAddr, int dstLen)
 {
     RunLength.ExpandYAY0(header, dstAddr, dstLen);
 }