Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
Update dialog.json
Commit Description:
Update dialog.json
using System ;
using System.Numerics ;
using System.Runtime.CompilerServices ;
using System.Text ;
namespace ImGuiNET
{
public unsafe partial struct StbUndoRecord
{
public int where ;
public int insert_length ;
public int delete_length ;
public int char_storage ;
}
public unsafe partial struct StbUndoRecordPtr
{
public StbUndoRecord * NativePtr { get ; }
public StbUndoRecordPtr ( StbUndoRecord * nativePtr ) => NativePtr = nativePtr ;
public StbUndoRecordPtr ( IntPtr nativePtr ) => NativePtr = ( StbUndoRecord *) nativePtr ;
public static implicit operator StbUndoRecordPtr ( StbUndoRecord * nativePtr ) => new StbUndoRecordPtr ( nativePtr );
public static implicit operator StbUndoRecord * ( StbUndoRecordPtr wrappedPtr ) => wrappedPtr . NativePtr ;
public static implicit operator StbUndoRecordPtr ( IntPtr nativePtr ) => new StbUndoRecordPtr ( nativePtr );
public ref int where => ref Unsafe . AsRef < int >(& NativePtr -> where );
public ref int insert_length => ref Unsafe . AsRef < int >(& NativePtr -> insert_length );
public ref int delete_length => ref Unsafe . AsRef < int >(& NativePtr -> delete_length );
public ref int char_storage => ref Unsafe . AsRef < int >(& NativePtr -> char_storage );
}
}
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository permissions settings