1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #include <opc/config.h>
- #ifndef OPC_INPUTSTREAM_H
- #define OPC_INPUTSTREAM_H
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- typedef struct OPC_CONTAINER_INPUTSTREAM_STRUCT opcContainerInputStream;
-
- opcContainerInputStream* opcContainerOpenInputStream(opcContainer *container, const xmlChar *name);
-
- opc_uint32_t opcContainerReadInputStream(opcContainerInputStream* stream, opc_uint8_t *buffer, opc_uint32_t buffer_len);
-
- opc_error_t opcContainerCloseInputStream(opcContainerInputStream* stream);
-
- opcCompressionOption_t opcContainerGetInputStreamCompressionOption(opcContainerInputStream* stream);
- #ifdef __cplusplus
- }
- #endif
-
- #endif
|