Add files to unsupported platform.

This commit is contained in:
Hisham Muhammad 2015-03-16 03:16:18 -03:00
parent adbfe3c3f1
commit ddbb71d1c8
4 changed files with 78 additions and 0 deletions

8
unsupported/Battery.c Normal file
View File

@ -0,0 +1,8 @@
#include "BatteryMeter.h"
void Battery_getData(double* level, ACPresence* isOnAC) {
*level = -1;
*isOnAC = AC_ERROR;
}

9
unsupported/Battery.h Normal file
View File

@ -0,0 +1,9 @@
/* Do not edit this file. It was automatically generated. */
#ifndef HEADER_Battery
#define HEADER_Battery
void Battery_getData(double* level, ACPresence* isOnAC);
#endif

View File

@ -0,0 +1,37 @@
/*
htop - UnsupportedProcess.c
(C) 2015 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "Process.h"
#include "UnsupportedProcess.h"
#include <stdlib.h>
/*{
typedef struct UnsupportedProcess_ {
Process super;
// add platform-specific fields here
} UnsupportedProcess;
#define Process_delete UnsupportedProcess_delete
}*/
UnsupportedProcess* UnsupportedProcess_new(Settings* settings) {
UnsupportedProcess* this = calloc(sizeof(UnsupportedProcess), 1);
Object_setClass(this, Class(Process));
Process_init(&this->super, settings);
return this;
}
void UnsupportedProcess_delete(Object* cast) {
UnsupportedProcess* this = (UnsupportedProcess*) cast;
Object_setClass(this, Class(Process));
Process_done((Process*)cast);
// free platform-specific fields here
free(this);
}

View File

@ -0,0 +1,24 @@
/* Do not edit this file. It was automatically generated. */
#ifndef HEADER_UnsupportedProcess
#define HEADER_UnsupportedProcess
/*
htop - UnsupportedProcess.h
(C) 2015 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
typedef struct UnsupportedProcess_ {
Process super;
// add platform-specific fields here
} UnsupportedProcess;
#define Process_delete UnsupportedProcess_delete
void UnsupportedProcess_delete(Object* cast);
#endif