mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-11-10 01:10:27 +00:00
20 lines
348 B
C
20 lines
348 B
C
#pragma once
|
|
#include <inttypes.h>
|
|
|
|
struct iostats {
|
|
struct {
|
|
unsigned long long read_bytes;
|
|
unsigned long long write_bytes;
|
|
} curr;
|
|
struct {
|
|
unsigned long long read_bytes;
|
|
unsigned long long write_bytes;
|
|
} prev;
|
|
struct {
|
|
float read;
|
|
float write;
|
|
} diff;
|
|
};
|
|
|
|
void getIoStats(void *args);
|