MangoHud/src/iostats.h
2020-06-06 23:46:55 +02:00

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);