@@ -29,12 +29,23 @@ public static partial void DoubleIntFieldsRefReturn(
29
29
public static partial void DoubleIntFieldsOutReturn (
30
30
IntFields input ,
31
31
out IntFields result ) ;
32
+
33
+ [ GeneratedDllImport ( NativeExportsNE_Binary , EntryPoint = "blittablestructs_increment_invert_ptrfields_byref" ) ]
34
+ public static partial void IncrementInvertPointerFieldsByRef ( ref PointerFields result ) ;
35
+
36
+ [ GeneratedDllImport ( NativeExportsNE_Binary , EntryPoint = "blittablestructs_increment_invert_ptrfields_byref" ) ]
37
+ public static partial void IncrementInvertPointerFieldsByRefIn ( in PointerFields result ) ;
38
+
39
+ [ GeneratedDllImport ( NativeExportsNE_Binary , EntryPoint = "blittablestructs_increment_invert_ptrfields_refreturn" ) ]
40
+ public static partial void IncrementInvertPointerFieldsRefReturn (
41
+ PointerFields input ,
42
+ ref PointerFields result ) ;
32
43
}
33
44
34
45
public class BlittableStructTests
35
46
{
36
47
[ Fact ]
37
- public void ValidateBlittableStruct ( )
48
+ public void ValidateIntFields ( )
38
49
{
39
50
const int A = 24 , B = 37 , C = 59 ;
40
51
var initial = new IntFields ( )
@@ -82,5 +93,71 @@ public void ValidateBlittableStruct()
82
93
Assert . Equal ( expected , input ) ; // Updated even when passed with in keyword (matches built-in system)
83
94
}
84
95
}
96
+
97
+ [ Fact ]
98
+ public unsafe void ValidatePointerFields ( )
99
+ {
100
+ int iInitial = 31 ;
101
+ bool bInitial = false ;
102
+ char cInitial = 'A' ;
103
+
104
+ int iExpected = iInitial + 1 ;
105
+ bool bExpected = ! bInitial ;
106
+ char cExpected = ( char ) ( cInitial + 1 ) ;
107
+
108
+ int i = iInitial ;
109
+ bool b = bInitial ;
110
+ char c = cInitial ;
111
+ var initial = new PointerFields ( )
112
+ {
113
+ i = & i ,
114
+ b = & b ,
115
+ c = & c ,
116
+ } ;
117
+
118
+ PointerFields input = initial ;
119
+ {
120
+ int iResult ;
121
+ bool bResult ;
122
+ char cResult ;
123
+ var result = new PointerFields ( )
124
+ {
125
+ i = & iResult ,
126
+ b = & bResult ,
127
+ c = & cResult
128
+ } ;
129
+ NativeExportsNE . IncrementInvertPointerFieldsRefReturn ( input , ref result ) ;
130
+ Assert . Equal ( initial , input ) ;
131
+ ValidateFieldValues ( result ) ;
132
+ }
133
+
134
+ {
135
+ ResetFieldValues ( input ) ;
136
+ NativeExportsNE . IncrementInvertPointerFieldsByRef ( ref input ) ;
137
+ Assert . Equal ( initial , input ) ;
138
+ ValidateFieldValues ( input ) ;
139
+ }
140
+
141
+ {
142
+ ResetFieldValues ( input ) ;
143
+ NativeExportsNE . IncrementInvertPointerFieldsByRefIn ( in input ) ;
144
+ Assert . Equal ( initial , input ) ;
145
+ ValidateFieldValues ( input ) ;
146
+ }
147
+
148
+ void ResetFieldValues ( PointerFields input )
149
+ {
150
+ * ( input . i ) = iInitial ;
151
+ * ( input . b ) = bInitial ;
152
+ * ( input . c ) = cInitial ;
153
+ }
154
+
155
+ void ValidateFieldValues ( PointerFields result )
156
+ {
157
+ Assert . Equal ( iExpected , * result . i ) ;
158
+ Assert . Equal ( bExpected , * result . b ) ;
159
+ Assert . Equal ( cExpected , * result . c ) ;
160
+ }
161
+ }
85
162
}
86
163
}
0 commit comments