1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #ifndef NULLSTREAMS_H
- #define NULLSTREAMS_H
- #define _null_stream_data \
- _base_sequential_stream_data
- struct NullStreamVMT {
- _base_sequential_stream_methods
- };
- typedef struct {
-
- const struct NullStreamVMT *vmt;
- _null_stream_data
- } NullStream;
- #ifdef __cplusplus
- extern "C" {
- #endif
- void nullObjectInit(NullStream *nsp);
- #ifdef __cplusplus
- }
- #endif
- #endif
|