mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-02 12:08:16 +08:00
1.3 KiB
1.3 KiB
tk_iostream_t
概述
input/output stream interface
函数
函数名称 | 说明 |
---|---|
tk_iostream_get_istream | |
tk_iostream_get_ostream |
tk_iostream_get_istream 函数
- 函数功能:
获取输入流对象。
- 函数原型:
tk_istream_t* tk_iostream_get_istream (tk_iostream_t* stream);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | tk_istream_t* | 返回输入流对象。 |
stream | tk_iostream_t* | iostream对象。 |
tk_iostream_get_ostream 函数
- 函数功能:
获取输出流对象。
- 函数原型:
tk_ostream_t* tk_iostream_get_ostream (tk_iostream_t* stream);
- 参数说明:
参数 | 类型 | 说明 |
---|---|---|
返回值 | tk_ostream_t* | 返回输出流对象。 |
stream | tk_iostream_t* | iostream对象。 |