mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-14 04:34:52 -08:00
Ed_
2e5e31ed3b
Mostly just cleanup and renaming of certain stuff (mostly in dependencies). * Changed uw and sw to usize and ssize. * Removed zpl_cast usage throughout dependencies * No longer using GEN_DEF_INLINE & GEN_IMPL_INLINE * header_start.hpp renamed to platform.hpp for depdendencies header.
12 lines
217 B
C++
12 lines
217 B
C++
#ifdef GEN_INTELLISENSE_DIRECTIVES
|
|
#pragma once
|
|
#include "containers.hpp"
|
|
#endif
|
|
|
|
#pragma region Hashing
|
|
|
|
u32 crc32( void const* data, ssize len );
|
|
u64 crc64( void const* data, ssize len );
|
|
|
|
#pragma endregion Hashing
|