SoDataCompressorCrc32Long Method (SbNativeArray, 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.13.0 (9.9.13.0)
Syntax[EditorBrowsableAttribute(EditorBrowsableState.Never)]
[ObsoleteAttribute("Use Crc32() instead.")]
public static ulong Crc32Long(
SbNativeArray buf,
ulong len
)
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
<ObsoleteAttribute("Use Crc32() instead.")>
Public Shared Function Crc32Long (
buf As SbNativeArray,
len As ULong
) As ULong
public:
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
[ObsoleteAttribute(L"Use Crc32() instead.")]
static unsigned long long Crc32Long(
SbNativeArray^ buf,
unsigned long long len
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
[<ObsoleteAttribute("Use Crc32() instead.")>]
static member Crc32Long :
buf : SbNativeArray *
len : uint64 -> uint64
Parameters
- buf
- Type: OIV.InventorSbNativeArray
a pointer to the data.
- len
- Type: SystemUInt64
the size of the buffer.
Return Value
Type:
UInt64The CRC32 of the data.
Remarks
See Also