mirror of
https://github.com/facebook/zstd.git
synced 2025-08-01 09:47:01 +03:00
mmap for windows (#3557)
* mmap for windows * remove enabling mmap for testing * rename FIO dictionary initialization methods + un-const dictionary objects in free functions * remove enabling mmap for testing * initDict returns void, underlying setDictBuffer methods return the size of the set buffer * fix comment
This commit is contained in:
committed by
GitHub
parent
57e1b45920
commit
b2ad17a658
@ -78,6 +78,9 @@ typedef struct {
|
||||
void* dictBuffer;
|
||||
size_t dictBufferSize;
|
||||
FIO_dictBufferType_t dictBufferType;
|
||||
#if defined(_MSC_VER) || defined(_WIN32)
|
||||
HANDLE dictHandle;
|
||||
#endif
|
||||
} FIO_Dict_t;
|
||||
|
||||
#endif /* FILEIO_TYPES_HEADER */
|
||||
|
Reference in New Issue
Block a user