Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
micropython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
micropython
Commits
e6a4d4e2
Commit
e6a4d4e2
authored
Apr 05, 2016
by
Paul Sokolovsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
py: Move stream-related declarations from obj.h to stream.h.
parent
e4cb7c61
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
12 deletions
+13
-12
py/obj.h
py/obj.h
+0
-12
py/stream.h
py/stream.h
+13
-0
No files found.
py/obj.h
View file @
e6a4d4e2
...
...
@@ -444,7 +444,6 @@ bool mp_get_buffer(mp_obj_t obj, mp_buffer_info_t *bufinfo, mp_uint_t flags);
void
mp_get_buffer_raise
(
mp_obj_t
obj
,
mp_buffer_info_t
*
bufinfo
,
mp_uint_t
flags
);
// Stream protocol
#define MP_STREAM_ERROR ((mp_uint_t)-1)
typedef
struct
_mp_stream_p_t
{
// On error, functions should return MP_STREAM_ERROR and fill in *errcode (values
// are implementation-dependent, but will be exposed to user, e.g. via exception).
...
...
@@ -454,17 +453,6 @@ typedef struct _mp_stream_p_t {
mp_uint_t
is_text
:
1
;
// default is bytes, set this for text stream
}
mp_stream_p_t
;
// Stream ioctl request codes
#define MP_STREAM_FLUSH (1)
#define MP_STREAM_SEEK (2)
#define MP_STREAM_POLL (3)
// Argument structure for MP_STREAM_SEEK
struct
mp_stream_seek_t
{
mp_off_t
offset
;
int
whence
;
};
struct
_mp_obj_type_t
{
mp_obj_base_t
base
;
qstr
name
;
...
...
py/stream.h
View file @
e6a4d4e2
...
...
@@ -28,6 +28,19 @@
#include "py/obj.h"
#define MP_STREAM_ERROR ((mp_uint_t)-1)
// Stream ioctl request codes
#define MP_STREAM_FLUSH (1)
#define MP_STREAM_SEEK (2)
#define MP_STREAM_POLL (3)
// Argument structure for MP_STREAM_SEEK
struct
mp_stream_seek_t
{
mp_off_t
offset
;
int
whence
;
};
MP_DECLARE_CONST_FUN_OBJ
(
mp_stream_read_obj
);
MP_DECLARE_CONST_FUN_OBJ
(
mp_stream_readinto_obj
);
MP_DECLARE_CONST_FUN_OBJ
(
mp_stream_readall_obj
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment