Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
htop
Commits
ddbb71d1
Commit
ddbb71d1
authored
Mar 16, 2015
by
Hisham Muhammad
Browse files
Add files to unsupported platform.
parent
adbfe3c3
Changes
4
Hide whitespace changes
Inline
Side-by-side
unsupported/Battery.c
0 → 100644
View file @
ddbb71d1
#include "BatteryMeter.h"
void
Battery_getData
(
double
*
level
,
ACPresence
*
isOnAC
)
{
*
level
=
-
1
;
*
isOnAC
=
AC_ERROR
;
}
unsupported/Battery.h
0 → 100644
View file @
ddbb71d1
/* Do not edit this file. It was automatically generated. */
#ifndef HEADER_Battery
#define HEADER_Battery
void
Battery_getData
(
double
*
level
,
ACPresence
*
isOnAC
);
#endif
unsupported/UnsupportedProcess.c
0 → 100644
View file @
ddbb71d1
/*
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
);
}
unsupported/UnsupportedProcess.h
0 → 100644
View file @
ddbb71d1
/* 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
Write
Preview
Markdown
is supported
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