ABT.StructOrUnionType.CreateIncompleteStruct C# (CSharp) Method

CreateIncompleteStruct() public static method

public static CreateIncompleteStruct ( String name, System.Boolean is_const, System.Boolean is_volatile ) : StructOrUnionType
name String
is_const System.Boolean
is_volatile System.Boolean
return StructOrUnionType
        public static StructOrUnionType CreateIncompleteStruct(String name, Boolean is_const, Boolean is_volatile) =>
            new StructOrUnionType(new StructOrUnionLayout($"struct {name}"), is_const, is_volatile);