2018-10-16 11:01:38 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "types.h"
|
2018-10-26 22:32:35 +02:00
|
|
|
|
2018-10-16 11:01:38 +02:00
|
|
|
struct system_t
|
|
|
|
{
|
|
|
|
time_t uptime;
|
2018-11-17 00:11:08 +01:00
|
|
|
dword nprocess;
|
|
|
|
dword nblocked;
|
2018-10-16 11:01:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern system_t system;
|