Editor/HumanoidRetargeter/Embedded/ZstdSharp/Unsafe/ZSTD_DDict_s.cs
#nullable enable
using System;
using System.Collections.Generic;
using System.Linq;
namespace HumanoidRetargeterZstd.Unsafe
{
/*-*******************************************************
* Types
*********************************************************/
public unsafe struct ZSTD_DDict_s
{
public void* dictBuffer;
public void* dictContent;
public nuint dictSize;
public ZSTD_entropyDTables_t entropy;
public uint dictID;
public uint entropyPresent;
public ZSTD_customMem cMem;
}
}