Stride

OPEN / CLOSE
  • Features
  • Blog
  • Documentation
  • Community
(icon) Download

  • Discord
  • Facebook
  • Twitter
  • YouTube

LANGUAGE

OPEN / CLOSE
  • English
  • 日本語
    Show / Hide Table of Contents

    NativeLz4Base Class

    Namespace: Stride.Core.Native
    Assembly: Stride.Core.dll
    System.Object → NativeLz4Base
    Derived from NativeLz4Base:

    public abstract class NativeLz4Base
    Name Description
    Methods
    LZ4_compress_limitedOutput(Byte*, Byte*, Int32, Int32)
    LZ4_compressHC_limitedOutput(Byte*, Byte*, Int32, Int32)
    LZ4_uncompress(Byte*, Byte*, Int32)
    LZ4_uncompress_unknownOutputSize(Byte*, Byte*, Int32, Int32)
    | Improve this Doc View Source

    Methods


    LZ4_compress_limitedOutput(Byte*, Byte*, Int32, Int32)

    protected static extern int LZ4_compress_limitedOutput(byte *source, byte *dest, int inputSize, int maxOutputSize)
    Parameters
    Type Name Description
    System.Byte* source
    System.Byte* dest
    System.Int32 inputSize
    System.Int32 maxOutputSize
    Returns
    Type Description
    System.Int32

    LZ4_compressHC_limitedOutput(Byte*, Byte*, Int32, Int32)

    protected static extern int LZ4_compressHC_limitedOutput(byte *source, byte *dest, int inputSize, int maxOutputSize)
    Parameters
    Type Name Description
    System.Byte* source
    System.Byte* dest
    System.Int32 inputSize
    System.Int32 maxOutputSize
    Returns
    Type Description
    System.Int32

    LZ4_uncompress(Byte*, Byte*, Int32)

    protected static extern int LZ4_uncompress(byte *source, byte *dest, int maxOutputSize)
    Parameters
    Type Name Description
    System.Byte* source
    System.Byte* dest
    System.Int32 maxOutputSize
    Returns
    Type Description
    System.Int32

    LZ4_uncompress_unknownOutputSize(Byte*, Byte*, Int32, Int32)

    protected static extern int LZ4_uncompress_unknownOutputSize(byte *source, byte *dest, int inputSize, int maxOutputSize)
    Parameters
    Type Name Description
    System.Byte* source
    System.Byte* dest
    System.Int32 inputSize
    System.Int32 maxOutputSize
    Returns
    Type Description
    System.Int32

    Extension Methods

    ComponentBaseExtensions.DisposeBy<T>(T, ICollectorHolder)
    ComponentBaseExtensions.RemoveDisposeBy<T>(T, ICollectorHolder)
    • Improve this Doc
    • View Source
    In This Article

    Back to top

    Copyright © 2019-2021 .NET Foundation and Contributors
    Supported by the .NET Foundation