SoDataCompressorCrc32Long Method (SbNativeArrayByte, UInt64) |
Note: This API is now obsolete.
Utility function to get the CRC32 of a buffer.
Namespace: OIV.LDM.CompressorsAssembly: OIV.LDM (in OIV.LDM.dll) Version: 9.9.36.0 (9.9.36.0)
Syntax[EditorBrowsableAttribute(EditorBrowsableState.Never)]
[ObsoleteAttribute("Use Crc32() instead.")]
public static ulong Crc32Long(
SbNativeArray<byte> buf,
ulong len
)
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
<ObsoleteAttribute("Use Crc32() instead.")>
Public Shared Function Crc32Long (
buf As SbNativeArray(Of Byte),
len As ULong
) As ULong
public:
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
[ObsoleteAttribute(L"Use Crc32() instead.")]
static unsigned long long Crc32Long(
SbNativeArray<unsigned char>^ buf,
unsigned long long len
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
[<ObsoleteAttribute("Use Crc32() instead.")>]
static member Crc32Long :
buf : SbNativeArray<byte> *
len : uint64 -> uint64
Parameters
- buf
- Type: OIV.Inventor.GenericSbNativeArrayByte
a pointer to the data.
- len
- Type: SystemUInt64
the size of the buffer.
Return Value
Type:
UInt64The CRC32 of the data.
Remarks
See Also