d2tweaks-rnd2k/include/diablo2/structures/file_handle.h

17 lines
260 B
C
Raw Permalink Normal View History

2024-04-17 03:45:38 +00:00
#pragma once
#include <cstdint>
namespace diablo2 {
namespace structures {
struct file_handle {
char pad_0000[0x134];
void* file;
int32_t position;
int32_t size;
char pad_0001[0x18];
};
static_assert(sizeof(file_handle) == 0x158);
}
}