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