SharpMod.CRC32.Process C# (CSharp) Method

Process() public method

Processes a memory segment
public Process ( IntPtr ptr, int size ) : void
ptr System.IntPtr /// A pointer to the memory chunk ///
size int /// the size of the memory ///
return void
        public void Process(IntPtr ptr, int size)
        {
            MetaModEngine.engineFunctions.CRC32_ProcessBuffer(crc32ptr, ptr, size);
        }

Same methods

CRC32::Process ( char ch ) : void
CRC32::Process ( int i ) : void
CRC32::Process ( long l ) : void
CRC32::Process ( string str ) : void