mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
Small Doxygen fixes
This commit is contained in:
parent
dfe6d81683
commit
b427a4f159
@ -116,7 +116,7 @@ struct connection_state {
|
|||||||
* structure holds a system error instead. */
|
* structure holds a system error instead. */
|
||||||
enum connection_basic_state basic;
|
enum connection_basic_state basic;
|
||||||
|
|
||||||
/** When #state is ::S_ERRNO, syserr is the saved value of
|
/** When #basic is ::S_ERRNO, syserr is the saved value of
|
||||||
* errno. Otherwise, syserr should be 0. */
|
* errno. Otherwise, syserr should be 0. */
|
||||||
int syserr;
|
int syserr;
|
||||||
};
|
};
|
||||||
|
@ -251,7 +251,7 @@ utf8_to_jsstring(JSContext *ctx, const unsigned char *str, int length)
|
|||||||
* @param[in] utf16
|
* @param[in] utf16
|
||||||
* Pointer to the first element in an array of jschars.
|
* Pointer to the first element in an array of jschars.
|
||||||
*
|
*
|
||||||
* @param[i] len
|
* @param[in] len
|
||||||
* Number of jschars in the @a utf16 array.
|
* Number of jschars in the @a utf16 array.
|
||||||
*
|
*
|
||||||
* @return @a utf8 if successful, or NULL if not. */
|
* @return @a utf8 if successful, or NULL if not. */
|
||||||
|
@ -452,7 +452,7 @@ download_data(struct download *download, struct file_download *file_download)
|
|||||||
* lun_alternate(), lun_cancel(), lun_overwrite(), and lun_resume(). */
|
* lun_alternate(), lun_cancel(), lun_overwrite(), and lun_resume(). */
|
||||||
struct lun_hop {
|
struct lun_hop {
|
||||||
/** The terminal in which ELinks is asking the question.
|
/** The terminal in which ELinks is asking the question.
|
||||||
* This gets passed to the callback. */
|
* This gets passed to #callback. */
|
||||||
struct terminal *term;
|
struct terminal *term;
|
||||||
|
|
||||||
/** The name of the local file into which the data was
|
/** The name of the local file into which the data was
|
||||||
@ -658,9 +658,9 @@ lun_resume(void *lun_hop_)
|
|||||||
* not begin. The callback is responsible of doing mem_free(@a file).
|
* not begin. The callback is responsible of doing mem_free(@a file).
|
||||||
*
|
*
|
||||||
* @param data
|
* @param data
|
||||||
* A pointer to be passed to @a callback. Although this is a void *,
|
* A pointer to be passed to @a callback. If @a resume includes
|
||||||
* it must always point to struct cdf_hop because the pointer can get
|
* ::DOWNLOAD_RESUME_ALLOWED, this must point to struct cdf_hop
|
||||||
* passed to lun_resume(), which assumes so.
|
* because the pointer can be read by lun_resume(), which assumes so.
|
||||||
*
|
*
|
||||||
* @relates lun_hop */
|
* @relates lun_hop */
|
||||||
static void
|
static void
|
||||||
@ -846,8 +846,8 @@ finish:
|
|||||||
*
|
*
|
||||||
* @param real_file
|
* @param real_file
|
||||||
* If non-NULL, prepare to save in *@a real_file the name of the local
|
* If non-NULL, prepare to save in *@a real_file the name of the local
|
||||||
* file that was eventually opened. The callback must then free this
|
* file that was eventually opened. @a callback must then arrange for
|
||||||
* string with mem_free().
|
* this string to be freed with mem_free().
|
||||||
*
|
*
|
||||||
* @param safe
|
* @param safe
|
||||||
* If nonzero, give only the user herself access to the file (even if
|
* If nonzero, give only the user herself access to the file (even if
|
||||||
@ -871,10 +871,10 @@ finish:
|
|||||||
* will be changed to match what the user chose.
|
* will be changed to match what the user chose.
|
||||||
*
|
*
|
||||||
* @param data
|
* @param data
|
||||||
* A pointer to be passed to #callback. If the @a resume argument
|
* A pointer to be passed to @a callback. If @a resume includes
|
||||||
* given to create_download_file() included ::DOWNLOAD_RESUME_ALLOWED,
|
* ::DOWNLOAD_RESUME_ALLOWED, this must point to struct cmdw_hop or
|
||||||
* this must point to struct cmdw_hop or struct codw_hop because the
|
* struct codw_hop because the pointer can be read by lun_resume(),
|
||||||
* pointer can be read by lun_resume(), which assumes so.
|
* which assumes so.
|
||||||
*
|
*
|
||||||
* @relates cdf_hop */
|
* @relates cdf_hop */
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user