From 196962ff01c39b4705d8117df5c3f8c205349950 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Fri, 9 Jun 2017 19:20:50 -0700 Subject: [PATCH] Add AcceleratedCRC32C to port_win.h --- port/port_win.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/port/port_win.h b/port/port_win.h index 45bf2f0ea749d..5009004822838 100644 --- a/port/port_win.h +++ b/port/port_win.h @@ -168,6 +168,8 @@ inline bool GetHeapProfile(void (*func)(void*, const char*, int), void* arg) { return false; } +uint32_t AcceleratedCRC32C(uint32_t crc, const char* buf, size_t size); + } }