mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 09:49:25 +08:00
24 lines
491 B
Diff
24 lines
491 B
Diff
|
--- a/lzf.h
|
||
|
+++ b/lzf.h
|
||
|
@@ -48,6 +48,10 @@
|
||
|
|
||
|
#define LZF_VERSION 0x0105 /* 1.5, API version */
|
||
|
|
||
|
+#ifdef __cplusplus
|
||
|
+extern "C" {
|
||
|
+#endif
|
||
|
+
|
||
|
/*
|
||
|
* Compress in_len bytes stored at the memory block starting at
|
||
|
* in_data and write the result to out_data, up to a maximum length
|
||
|
@@ -96,5 +100,9 @@ unsigned int
|
||
|
lzf_decompress (const void *const in_data, unsigned int in_len,
|
||
|
void *out_data, unsigned int out_len);
|
||
|
|
||
|
+#ifdef __cplusplus
|
||
|
+}
|
||
|
+#endif
|
||
|
+
|
||
|
#endif
|
||
|
|