mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-12 12:14:36 +03:00
Changes in object model: separate class objects to store vtable. Also, nicer UTF-8 display of big numbers.
This commit is contained in:
@ -153,12 +153,6 @@ typedef struct Process_ {
|
||||
} Process;
|
||||
|
||||
|
||||
#ifdef DEBUG
|
||||
extern char* PROCESS_CLASS;
|
||||
#else
|
||||
#define PROCESS_CLASS NULL
|
||||
#endif
|
||||
|
||||
extern const char *Process_fieldNames[];
|
||||
|
||||
extern const char *Process_fieldTitles[];
|
||||
@ -172,6 +166,8 @@ void Process_getMaxPid();
|
||||
|
||||
void Process_delete(Object* cast);
|
||||
|
||||
extern ObjectClass Process_class;
|
||||
|
||||
Process* Process_new(struct ProcessList_ *pl);
|
||||
|
||||
void Process_toggleTag(Process* this);
|
||||
|
Reference in New Issue
Block a user