Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Pacman
Pacman
Commits
569bcd9d
Commit
569bcd9d
authored
Mar 06, 2022
by
Allan McRae
Browse files
Add missing parameter names to silence doxygen
Signed-off-by:
Allan McRae
<
allan@archlinux.org
>
parent
5bbda937
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/libalpm/alpm.h
View file @
569bcd9d
...
...
@@ -967,7 +967,7 @@ typedef union _alpm_event_t {
* Called when an event occurs
* @param ctx user-provided context
* @param event the event that occurred */
typedef
void
(
*
alpm_cb_event
)(
void
*
ctx
,
alpm_event_t
*
);
typedef
void
(
*
alpm_cb_event
)(
void
*
ctx
,
alpm_event_t
*
event
);
/**
* Type of question.
...
...
@@ -1114,7 +1114,7 @@ typedef union _alpm_question_t {
* @param ctx user-provided context
* @param question the question being asked.
*/
typedef
void
(
*
alpm_cb_question
)(
void
*
ctx
,
alpm_question_t
*
);
typedef
void
(
*
alpm_cb_question
)(
void
*
ctx
,
alpm_question_t
*
question
);
/** An enum over different kinds of progress alerts. */
typedef
enum
_alpm_progress_t
{
...
...
Write
Preview
Supports
Markdown
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