Re-generate all headers with latest scripts/MakeHeader.py

Sync-up missing extern declarations for many functions.
This commit is contained in:
Nathan Scott
2020-08-18 17:41:49 +10:00
parent 579995c7c2
commit 7ac1c709b7
40 changed files with 215 additions and 215 deletions

View File

@ -27,22 +27,22 @@ extern const SignalItem Platform_signals[];
extern const unsigned int Platform_numberOfSignals;
void Platform_setBindings(Htop_Action* keys);
extern void Platform_setBindings(Htop_Action* keys);
extern MeterClass* Platform_meterTypes[];
int Platform_getUptime();
extern int Platform_getUptime();
void Platform_getLoadAverage(double* one, double* five, double* fifteen);
extern void Platform_getLoadAverage(double* one, double* five, double* fifteen);
int Platform_getMaxPid();
extern int Platform_getMaxPid();
double Platform_setCPUValues(Meter* this, int cpu);
extern double Platform_setCPUValues(Meter* this, int cpu);
void Platform_setMemoryValues(Meter* this);
extern void Platform_setMemoryValues(Meter* this);
void Platform_setSwapValues(Meter* this);
extern void Platform_setSwapValues(Meter* this);
char* Platform_getProcessEnv(pid_t pid);
extern char* Platform_getProcessEnv(pid_t pid);
#endif