mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 04:58:13 +00:00
12 lines
246 B
C++
12 lines
246 B
C++
#pragma once
|
|
|
|
#include <limits>
|
|
|
|
typedef dword size_t;
|
|
typedef signed_dword ssize_t;
|
|
|
|
static const size_t GoodBufferSize = 4096;
|
|
|
|
typedef int64_t FileOffset;
|
|
inline static const FileOffset maxFileOffset = std::numeric_limits<FileOffset>::max();
|
|
|