Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
b17eb18e
Commit
b17eb18e
authored
Aug 20, 2011
by
Rémi Denis-Courmont
Browse files
Move msg_Copy() and msg_Free() to ncurses
parent
195940ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/vlc_messages.h
View file @
b17eb18e
...
...
@@ -64,27 +64,6 @@ typedef struct
char
*
psz_msg
;
/**< Message text */
}
msg_item_t
;
VLC_MALLOC
VLC_USED
static
inline
msg_item_t
*
msg_Copy
(
const
msg_item_t
*
msg
)
{
msg_item_t
*
copy
=
(
msg_item_t
*
)
xmalloc
(
sizeof
(
*
copy
));
copy
->
i_type
=
msg
->
i_type
;
copy
->
i_object_id
=
msg
->
i_object_id
;
copy
->
psz_object_type
=
msg
->
psz_object_type
;
copy
->
psz_module
=
strdup
(
msg
->
psz_module
);
copy
->
psz_msg
=
strdup
(
msg
->
psz_msg
);
copy
->
psz_header
=
msg
->
psz_header
?
strdup
(
msg
->
psz_header
)
:
NULL
;
return
copy
;
}
static
inline
void
msg_Free
(
msg_item_t
*
msg
)
{
free
((
char
*
)
msg
->
psz_module
);
free
((
char
*
)
msg
->
psz_header
);
free
(
msg
->
psz_msg
);
free
(
msg
);
}
/**
* Used by interface plugins which subscribe to the message bank.
*/
...
...
modules/gui/ncurses.c
View file @
b17eb18e
...
...
@@ -1810,6 +1810,25 @@ static void HandleKey(intf_thread_t *p_intf)
/*
*
*/
static
msg_item_t
*
msg_Copy
(
const
msg_item_t
*
msg
)
{
msg_item_t
*
copy
=
(
msg_item_t
*
)
xmalloc
(
sizeof
(
*
copy
));
copy
->
i_type
=
msg
->
i_type
;
copy
->
i_object_id
=
msg
->
i_object_id
;
copy
->
psz_object_type
=
msg
->
psz_object_type
;
copy
->
psz_module
=
strdup
(
msg
->
psz_module
);
copy
->
psz_msg
=
strdup
(
msg
->
psz_msg
);
copy
->
psz_header
=
msg
->
psz_header
?
strdup
(
msg
->
psz_header
)
:
NULL
;
return
copy
;
}
static
void
msg_Free
(
msg_item_t
*
msg
)
{
free
((
char
*
)
msg
->
psz_module
);
free
((
char
*
)
msg
->
psz_header
);
free
(
msg
->
psz_msg
);
free
(
msg
);
}
static
void
MsgCallback
(
void
*
data
,
const
msg_item_t
*
msg
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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