| 2156 | // C-compatible callbacks |
| 2157 | |
| 2158 | static int StaticGetSchema(StreamType* stream, struct ArrowSchema* out_schema) { |
| 2159 | ExportedArrayStream self{stream}; |
| 2160 | return self.ToCError(self.GetSchema(out_schema)); |
| 2161 | } |
| 2162 | |
| 2163 | static int StaticGetNext(StreamType* stream, ArrayType* out_array) { |
| 2164 | ExportedArrayStream self{stream}; |