Files
2025-05-18 13:04:45 +08:00

22 lines
389 B
C++

// Copyright 2011-2020 Molecular Matters GmbH, all rights reserved.
#pragma once
#if LC_VERSION == 1
#include "xxhash.h"
// BEGIN EPIC MOD
#include "LC_Platform.h"
#include "LC_Foundation_Windows.h"
// END EPIC MOD
namespace Hashing
{
LC_ALWAYS_INLINE uint32_t Hash32(const void* input, size_t length, uint32_t seed)
{
return XXH32(input, length, seed);
}
}
#endif // LC_VERSION