mirror of
https://gitlab.freedesktop.org/upower/power-profiles-daemon.git
synced 2026-05-07 21:18:02 +02:00
docs: Don't document object methods
They're only going to be used by the core daemon, not during implementation of the actions or drivers.
This commit is contained in:
parent
72b5c548ea
commit
38df9b32ce
2 changed files with 4 additions and 0 deletions
|
|
@ -25,6 +25,8 @@ struct _PpdActionClass
|
|||
GError **error);
|
||||
};
|
||||
|
||||
#ifndef __GTK_DOC_IGNORE__
|
||||
gboolean ppd_action_probe (PpdAction *action);
|
||||
gboolean ppd_action_activate_profile (PpdAction *action, PpdProfile profile, GError **error);
|
||||
const char *ppd_action_get_action_name (PpdAction *action);
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -25,9 +25,11 @@ struct _PpdDriverClass
|
|||
GError **error);
|
||||
};
|
||||
|
||||
#ifndef __GTK_DOC_IGNORE__
|
||||
gboolean ppd_driver_probe (PpdDriver *driver);
|
||||
gboolean ppd_driver_activate_profile (PpdDriver *driver, PpdProfile profile, GError **error);
|
||||
const char *ppd_driver_get_driver_name (PpdDriver *driver);
|
||||
PpdProfile ppd_driver_get_profiles (PpdDriver *driver);
|
||||
const char *ppd_driver_get_performance_inhibited (PpdDriver *driver);
|
||||
gboolean ppd_driver_is_performance_inhibited (PpdDriver *driver);
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue