mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-06 03:50:08 +02:00
Comment
This commit is contained in:
parent
859509164a
commit
906ab232b9
1 changed files with 12 additions and 2 deletions
14
src/mrmsg.c
14
src/mrmsg.c
|
@ -290,6 +290,8 @@ cleanup:
|
|||
* Get base file name without path. The base file name includes the extension; the path
|
||||
* is not returned. To get the full path, use mrmsg_get_file().
|
||||
*
|
||||
* @memberof mrmsg_t
|
||||
*
|
||||
* @param msg the message object
|
||||
*
|
||||
* @return base file name plus extension without part. If there is no file
|
||||
|
@ -727,10 +729,18 @@ void mrmsg_save_param_to_disk__(mrmsg_t* msg)
|
|||
|
||||
|
||||
/**
|
||||
* can be used to add some additional, persistent information to a messages
|
||||
* record.
|
||||
* Add additional, persistent information to a message record.
|
||||
*
|
||||
* Normally, this function is not needed; message records are created
|
||||
* by mrmailbox_send_msg() or mrmailbox_send_text_msg() and modified by
|
||||
* actions of the user. However, for rare cases, it might be necessary
|
||||
* to save an paramter later to disk. For this purpose, use this function.
|
||||
*
|
||||
* @memberof mrmsg_t
|
||||
*
|
||||
* @param msg The message object.
|
||||
*
|
||||
* @return None.
|
||||
*/
|
||||
void mrmsg_save_param_to_disk(mrmsg_t* msg)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue