@@ -28,7 +28,9 @@ public DeviceFaultVendorBinaryHeaderVersionOneEXT
28
28
uint ? driverVersion = null ,
29
29
uint ? applicationNameOffset = null ,
30
30
uint ? applicationVersion = null ,
31
- uint ? engineNameOffset = null
31
+ uint ? engineNameOffset = null ,
32
+ uint ? engineVersion = null ,
33
+ uint ? apiVersion = null
32
34
) : this ( )
33
35
{
34
36
if ( headerSize is not null )
@@ -70,6 +72,16 @@ public DeviceFaultVendorBinaryHeaderVersionOneEXT
70
72
{
71
73
EngineNameOffset = engineNameOffset . Value ;
72
74
}
75
+
76
+ if ( engineVersion is not null )
77
+ {
78
+ EngineVersion = engineVersion . Value ;
79
+ }
80
+
81
+ if ( apiVersion is not null )
82
+ {
83
+ ApiVersion = apiVersion . Value ;
84
+ }
73
85
}
74
86
75
87
/// <summary></summary>
@@ -117,5 +129,15 @@ public DeviceFaultVendorBinaryHeaderVersionOneEXT
117
129
[ NativeName ( "Type.Name" , "uint32_t" ) ]
118
130
[ NativeName ( "Name" , "engineNameOffset" ) ]
119
131
public uint EngineNameOffset ;
132
+ /// <summary></summary>
133
+ [ NativeName ( "Type" , "uint32_t" ) ]
134
+ [ NativeName ( "Type.Name" , "uint32_t" ) ]
135
+ [ NativeName ( "Name" , "engineVersion" ) ]
136
+ public uint EngineVersion ;
137
+ /// <summary></summary>
138
+ [ NativeName ( "Type" , "uint32_t" ) ]
139
+ [ NativeName ( "Type.Name" , "uint32_t" ) ]
140
+ [ NativeName ( "Name" , "apiVersion" ) ]
141
+ public uint ApiVersion ;
120
142
}
121
143
}
0 commit comments