machine: Fix header indent.

This commit is contained in:
Alastair Poole 2020-05-13 21:13:01 +01:00
parent f54666f98c
commit dd4ab10381
3 changed files with 12 additions and 12 deletions

View File

@ -5,12 +5,12 @@
#include <Ecore.h>
Eina_Bool
disk_usage_get(const char *mountpoint, unsigned long *total, unsigned long *used);
disk_usage_get(const char *mountpoint, unsigned long *total, unsigned long *used);
char *
disk_mount_point_get(const char *path);
disk_mount_point_get(const char *path);
Eina_List *
disks_get(void);
disks_get(void);
#endif

View File

@ -63,21 +63,21 @@ struct results_t
};
results_t *
system_stats_get(void);
system_stats_get(void);
int
system_cpu_memory_get(double *percent_cpu, long *memory_total, long *memory_used);
system_cpu_memory_get(double *percent_cpu, long *memory_total, long *memory_used);
bool
system_network_transfer_get(unsigned long *incoming, unsigned long *outgoing);
system_network_transfer_get(unsigned long *incoming, unsigned long *outgoing);
int
system_temperature_cpu_get(void);
system_temperature_cpu_get(void);
void
system_power_state_get(power_t *power);
system_power_state_get(power_t *power);
int
system_cpu_online_count_get();
system_cpu_online_count_get();
#endif

View File

@ -55,7 +55,7 @@ typedef struct _Proc_Info
* @return A list of proc_t members for all processes.
*/
Eina_List *
proc_info_all_get(void);
proc_info_all_get(void);
/**
* Query a process for its current state.
@ -65,7 +65,7 @@ Eina_List *
* @return A proc_t pointer containing the process information.
*/
Proc_Info *
proc_info_by_pid(int pid);
proc_info_by_pid(int pid);
/**
* Free a Proc_Info * pointer;
@ -73,7 +73,7 @@ Proc_Info *
* @param proc The object to free.
*/
void
proc_info_free(Proc_Info *proc);
proc_info_free(Proc_Info *proc);
/**
* @}