| 2161 | } |
| 2162 | |
| 2163 | static int StaticGetNext(StreamType* stream, ArrayType* out_array) { |
| 2164 | ExportedArrayStream self{stream}; |
| 2165 | return self.ToCError(self.GetNext(out_array)); |
| 2166 | } |
| 2167 | |
| 2168 | static void StaticRelease(StreamType* stream) { ExportedArrayStream{stream}.Release(); } |
| 2169 |