1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-06 00:13:33 +00:00

Added ZLIB Compression Support

This commit is contained in:
Bryan Roe
2020-06-13 21:57:46 -07:00
parent ee0787f416
commit c3ad70a70e
28 changed files with 10334 additions and 12 deletions

View File

@@ -0,0 +1,25 @@
/*
Copyright 2020 Intel Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef ___DUKTAPE_COMPRESSED_STREAM___
#define ___DUKTAPE_COMPRESSED_STREAM___
#include "duktape.h"
void ILibDuktape_CompressedStream_init(duk_context * ctx);
#endif