SoDataCompressorCrc32 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.36.0 (9.9.36.0)
Syntax[EditorBrowsableAttribute(EditorBrowsableState.Never)]
[ObsoleteAttribute("See documentation for more details")]
public static ulong Crc32(
SbNativeArray buf,
ulong len
)
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
<ObsoleteAttribute("See documentation for more details")>
Public Shared Function Crc32 (
buf As SbNativeArray,
len As ULong
) As ULong
public:
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
[ObsoleteAttribute(L"See documentation for more details")]
static unsigned long long Crc32(
SbNativeArray^ buf,
unsigned long long len
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
[<ObsoleteAttribute("See documentation for more details")>]
static member Crc32 :
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