AcTools.LapTimes.LevelDbUtils.LevelDbInterop.leveldb_writebatch_destroy C# (CSharp) Method

leveldb_writebatch_destroy() private method

private leveldb_writebatch_destroy ( IntPtr batch ) : void
batch System.IntPtr
return void
        public static extern void leveldb_writebatch_destroy(IntPtr /* WriteBatch */ batch);

Usage Example

コード例 #1
0
ファイル: WriteBatch.cs プロジェクト: WildGenie/actools
 protected override void FreeUnManagedObjects()
 {
     LevelDbInterop.leveldb_writebatch_destroy(Handle);
 }