Files
opennurbs/zlib/inffast.h
Nathan Letwory 5fcd089d99 Fix crash when used in Blender.
When OpenNURBS is used through rhino3dm in Blender there is
a crash in Blender in its openvdb library due to the same named
symbol inflate_fast.

Rename the one we have in our zlib library to zinflate_fast to
prevent the crash from happening.
2024-07-10 10:46:32 +03:00

12 lines
408 B
C

/* inffast.h -- header to use inffast.c
* Copyright (C) 1995-2003 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/* WARNING: this file should *not* be used by applications. It is
part of the implementation of the compression library and is
subject to change. Applications should only use zlib.h.
*/
void zinflate_fast OF((z_streamp strm, unsigned start));