| 2156 | } |
| 2157 | |
| 2158 | static int StaticGetNext(StreamType* stream, ArrayType* out_array) { |
| 2159 | ExportedArrayStream self{stream}; |
| 2160 | return self.ToCError(self.GetNext(out_array)); |
| 2161 | } |
| 2162 | |
| 2163 | static void StaticRelease(StreamType* stream) { ExportedArrayStream{stream}.Release(); } |
| 2164 |