Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
30198fa8
...
30198fa861c4c101db107522428fb2b8f3d2add3
authored
2005-06-23 13:25:56 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mailbox_get_flags): New function
1 parent
8305130a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
mailbox/mailbox.c
mailbox/mailbox.c
View file @
30198fa
...
...
@@ -356,6 +356,17 @@ mailbox_get_locker (mailbox_t mbox, locker_t *plocker)
}
int
mailbox_get_flags
(
mailbox_t
mbox
,
int
*
flags
)
{
if
(
mbox
==
NULL
)
return
MU_ERR_MBX_NULL
;
if
(
!*
flags
)
return
MU_ERR_OUT_NULL
;
*
flags
=
mbox
->
flags
;
return
0
;
}
int
mailbox_set_stream
(
mailbox_t
mbox
,
stream_t
stream
)
{
if
(
mbox
==
NULL
)
...
...
Please
register
or
sign in
to post a comment