@ohos-ports/lmdb 2.8.6-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +580 -0
- package/SECURITY.md +12 -0
- package/bin/download-prebuilds.js +15 -0
- package/binding.gyp +113 -0
- package/build/Release/lmdb.node +0 -0
- package/caching.js +212 -0
- package/dependencies/lmdb/libraries/liblmdb/COPYRIGHT +20 -0
- package/dependencies/lmdb/libraries/liblmdb/Doxyfile +1631 -0
- package/dependencies/lmdb/libraries/liblmdb/LICENSE +47 -0
- package/dependencies/lmdb/libraries/liblmdb/Makefile +136 -0
- package/dependencies/lmdb/libraries/liblmdb/chacha8.c +183 -0
- package/dependencies/lmdb/libraries/liblmdb/chacha8.h +14 -0
- package/dependencies/lmdb/libraries/liblmdb/crypto.c +121 -0
- package/dependencies/lmdb/libraries/liblmdb/intro.doc +192 -0
- package/dependencies/lmdb/libraries/liblmdb/lmdb.h +1817 -0
- package/dependencies/lmdb/libraries/liblmdb/mdb.c +12555 -0
- package/dependencies/lmdb/libraries/liblmdb/mdb_copy.1 +74 -0
- package/dependencies/lmdb/libraries/liblmdb/mdb_copy.c +106 -0
- package/dependencies/lmdb/libraries/liblmdb/mdb_drop.1 +53 -0
- package/dependencies/lmdb/libraries/liblmdb/mdb_drop.c +154 -0
- package/dependencies/lmdb/libraries/liblmdb/mdb_dump.1 +94 -0
- package/dependencies/lmdb/libraries/liblmdb/mdb_dump.c +333 -0
- package/dependencies/lmdb/libraries/liblmdb/mdb_load.1 +97 -0
- package/dependencies/lmdb/libraries/liblmdb/mdb_load.c +530 -0
- package/dependencies/lmdb/libraries/liblmdb/mdb_stat.1 +83 -0
- package/dependencies/lmdb/libraries/liblmdb/mdb_stat.c +276 -0
- package/dependencies/lmdb/libraries/liblmdb/midl-sparse.c +452 -0
- package/dependencies/lmdb/libraries/liblmdb/midl.c +452 -0
- package/dependencies/lmdb/libraries/liblmdb/midl.h +208 -0
- package/dependencies/lmdb/libraries/liblmdb/module.c +101 -0
- package/dependencies/lmdb/libraries/liblmdb/module.h +16 -0
- package/dependencies/lmdb/libraries/liblmdb/mtest.c +178 -0
- package/dependencies/lmdb/libraries/liblmdb/mtest2.c +124 -0
- package/dependencies/lmdb/libraries/liblmdb/mtest3.c +133 -0
- package/dependencies/lmdb/libraries/liblmdb/mtest4.c +168 -0
- package/dependencies/lmdb/libraries/liblmdb/mtest5.c +135 -0
- package/dependencies/lmdb/libraries/liblmdb/mtest6.c +141 -0
- package/dependencies/lmdb/libraries/liblmdb/mtest_enc.c +190 -0
- package/dependencies/lmdb/libraries/liblmdb/mtest_enc2.c +189 -0
- package/dependencies/lmdb/libraries/liblmdb/mtest_remap.c +177 -0
- package/dependencies/lmdb/libraries/liblmdb/sample-bdb.txt +73 -0
- package/dependencies/lmdb/libraries/liblmdb/sample-mdb.txt +62 -0
- package/dependencies/lmdb/libraries/liblmdb/tooltag +27 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/CHANGES +266 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/COPYRIGHT +20 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/Doxyfile +1631 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/LICENSE +47 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/intro.doc +192 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/lmdb.h +1608 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mdb.c +10320 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mdb_copy.1 +55 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mdb_copy.c +82 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mdb_dump.1 +75 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mdb_dump.c +319 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mdb_load.1 +84 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mdb_load.c +496 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mdb_stat.1 +64 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mdb_stat.c +263 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/midl.c +359 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/midl.h +186 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mtest.c +177 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mtest2.c +124 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mtest3.c +133 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mtest4.c +168 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mtest5.c +135 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/mtest6.c +141 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/sample-bdb.txt +73 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/sample-mdb.txt +62 -0
- package/dependencies/lmdb-data-v1/libraries/liblmdb/tooltag +22 -0
- package/dependencies/lz4/LICENSE +11 -0
- package/dependencies/lz4/lib/LICENSE +24 -0
- package/dependencies/lz4/lib/Makefile +225 -0
- package/dependencies/lz4/lib/README.md +169 -0
- package/dependencies/lz4/lib/dll/example/Makefile +63 -0
- package/dependencies/lz4/lib/dll/example/README.md +69 -0
- package/dependencies/lz4/lib/dll/example/fullbench-dll.sln +25 -0
- package/dependencies/lz4/lib/dll/example/fullbench-dll.vcxproj +182 -0
- package/dependencies/lz4/lib/dll/liblz4.def +62 -0
- package/dependencies/lz4/lib/liblz4-dll.rc.in +35 -0
- package/dependencies/lz4/lib/liblz4.pc.in +14 -0
- package/dependencies/lz4/lib/lz4.c +2722 -0
- package/dependencies/lz4/lib/lz4.h +842 -0
- package/dependencies/lz4/lib/lz4file.c +311 -0
- package/dependencies/lz4/lib/lz4file.h +93 -0
- package/dependencies/lz4/lib/lz4frame.c +2078 -0
- package/dependencies/lz4/lib/lz4frame.h +692 -0
- package/dependencies/lz4/lib/lz4frame_static.h +47 -0
- package/dependencies/lz4/lib/lz4hc.c +1631 -0
- package/dependencies/lz4/lib/lz4hc.h +413 -0
- package/dependencies/lz4/lib/xxhash.c +1030 -0
- package/dependencies/lz4/lib/xxhash.h +328 -0
- package/dependencies/v8/v8-fast-api-calls-v16.h +791 -0
- package/dependencies/v8/v8-fast-api-calls.h +888 -0
- package/dict/dict.txt +1 -0
- package/dict/dict2.txt +1 -0
- package/dist/index.cjs +2950 -0
- package/dist/index.cjs.map +1 -0
- package/index.d.cts +420 -0
- package/index.d.ts +450 -0
- package/index.js +38 -0
- package/keys.js +116 -0
- package/level.js +27 -0
- package/native.js +85 -0
- package/node-index.js +32 -0
- package/open.js +448 -0
- package/package.json +124 -0
- package/read.js +833 -0
- package/rollup.config.js +12 -0
- package/src/compression.cpp +225 -0
- package/src/cursor.cpp +395 -0
- package/src/dbi.cpp +382 -0
- package/src/env.cpp +1030 -0
- package/src/lmdb-js.cpp +64 -0
- package/src/lmdb-js.h +633 -0
- package/src/misc.cpp +593 -0
- package/src/ordered-binary.cpp +46 -0
- package/src/txn.cpp +210 -0
- package/src/v8-functions.cpp +170 -0
- package/src/windows.c +35 -0
- package/src/writer.cpp +537 -0
- package/util/RangeIterable.js +236 -0
- package/util/set-optional-deps.cjs +14 -0
- package/util/when.js +8 -0
- package/write.js +912 -0
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
<ItemGroup Label="ProjectConfigurations">
|
|
4
|
+
<ProjectConfiguration Include="Debug|Win32">
|
|
5
|
+
<Configuration>Debug</Configuration>
|
|
6
|
+
<Platform>Win32</Platform>
|
|
7
|
+
</ProjectConfiguration>
|
|
8
|
+
<ProjectConfiguration Include="Debug|x64">
|
|
9
|
+
<Configuration>Debug</Configuration>
|
|
10
|
+
<Platform>x64</Platform>
|
|
11
|
+
</ProjectConfiguration>
|
|
12
|
+
<ProjectConfiguration Include="Release|Win32">
|
|
13
|
+
<Configuration>Release</Configuration>
|
|
14
|
+
<Platform>Win32</Platform>
|
|
15
|
+
</ProjectConfiguration>
|
|
16
|
+
<ProjectConfiguration Include="Release|x64">
|
|
17
|
+
<Configuration>Release</Configuration>
|
|
18
|
+
<Platform>x64</Platform>
|
|
19
|
+
</ProjectConfiguration>
|
|
20
|
+
</ItemGroup>
|
|
21
|
+
<PropertyGroup Label="Globals">
|
|
22
|
+
<ProjectGuid>{13992FD2-077E-4954-B065-A428198201A9}</ProjectGuid>
|
|
23
|
+
<Keyword>Win32Proj</Keyword>
|
|
24
|
+
<RootNamespace>fullbench-dll</RootNamespace>
|
|
25
|
+
<OutDir>$(SolutionDir)bin\$(Platform)_$(Configuration)\</OutDir>
|
|
26
|
+
<IntDir>$(SolutionDir)bin\obj\$(RootNamespace)_$(Platform)_$(Configuration)\</IntDir>
|
|
27
|
+
</PropertyGroup>
|
|
28
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
29
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
30
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
31
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
|
32
|
+
<CharacterSet>Unicode</CharacterSet>
|
|
33
|
+
</PropertyGroup>
|
|
34
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
35
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
36
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
|
37
|
+
<CharacterSet>Unicode</CharacterSet>
|
|
38
|
+
</PropertyGroup>
|
|
39
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
40
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
41
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
42
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
43
|
+
<CharacterSet>Unicode</CharacterSet>
|
|
44
|
+
</PropertyGroup>
|
|
45
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
46
|
+
<ConfigurationType>Application</ConfigurationType>
|
|
47
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
|
48
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
49
|
+
<CharacterSet>Unicode</CharacterSet>
|
|
50
|
+
</PropertyGroup>
|
|
51
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
52
|
+
<ImportGroup Label="ExtensionSettings">
|
|
53
|
+
</ImportGroup>
|
|
54
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
55
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
56
|
+
</ImportGroup>
|
|
57
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
|
58
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
59
|
+
</ImportGroup>
|
|
60
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
61
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
62
|
+
</ImportGroup>
|
|
63
|
+
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
|
64
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
65
|
+
</ImportGroup>
|
|
66
|
+
<PropertyGroup Label="UserMacros" />
|
|
67
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
68
|
+
<LinkIncremental>true</LinkIncremental>
|
|
69
|
+
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
70
|
+
</PropertyGroup>
|
|
71
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
72
|
+
<LinkIncremental>true</LinkIncremental>
|
|
73
|
+
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
74
|
+
<RunCodeAnalysis>true</RunCodeAnalysis>
|
|
75
|
+
</PropertyGroup>
|
|
76
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
77
|
+
<LinkIncremental>false</LinkIncremental>
|
|
78
|
+
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
79
|
+
</PropertyGroup>
|
|
80
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
81
|
+
<LinkIncremental>false</LinkIncremental>
|
|
82
|
+
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
83
|
+
<RunCodeAnalysis>true</RunCodeAnalysis>
|
|
84
|
+
</PropertyGroup>
|
|
85
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
86
|
+
<ClCompile>
|
|
87
|
+
<PrecompiledHeader>
|
|
88
|
+
</PrecompiledHeader>
|
|
89
|
+
<WarningLevel>Level4</WarningLevel>
|
|
90
|
+
<Optimization>Disabled</Optimization>
|
|
91
|
+
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;LZ4_DLL_IMPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
92
|
+
<TreatWarningAsError>true</TreatWarningAsError>
|
|
93
|
+
<EnablePREfast>false</EnablePREfast>
|
|
94
|
+
<AdditionalIncludeDirectories>..\include</AdditionalIncludeDirectories>
|
|
95
|
+
</ClCompile>
|
|
96
|
+
<Link>
|
|
97
|
+
<SubSystem>Console</SubSystem>
|
|
98
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
99
|
+
<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
100
|
+
<AdditionalDependencies>liblz4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
101
|
+
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
|
|
102
|
+
</Link>
|
|
103
|
+
</ItemDefinitionGroup>
|
|
104
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
105
|
+
<ClCompile>
|
|
106
|
+
<PrecompiledHeader>
|
|
107
|
+
</PrecompiledHeader>
|
|
108
|
+
<WarningLevel>Level4</WarningLevel>
|
|
109
|
+
<Optimization>Disabled</Optimization>
|
|
110
|
+
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;LZ4_DLL_IMPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
111
|
+
<TreatWarningAsError>true</TreatWarningAsError>
|
|
112
|
+
<EnablePREfast>true</EnablePREfast>
|
|
113
|
+
<AdditionalOptions>/analyze:stacksize295252 %(AdditionalOptions)</AdditionalOptions>
|
|
114
|
+
<AdditionalIncludeDirectories>..\include</AdditionalIncludeDirectories>
|
|
115
|
+
</ClCompile>
|
|
116
|
+
<Link>
|
|
117
|
+
<SubSystem>Console</SubSystem>
|
|
118
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
119
|
+
<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
120
|
+
<AdditionalDependencies>liblz4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
121
|
+
</Link>
|
|
122
|
+
</ItemDefinitionGroup>
|
|
123
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
124
|
+
<ClCompile>
|
|
125
|
+
<WarningLevel>Level4</WarningLevel>
|
|
126
|
+
<PrecompiledHeader>
|
|
127
|
+
</PrecompiledHeader>
|
|
128
|
+
<Optimization>MaxSpeed</Optimization>
|
|
129
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
130
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
131
|
+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;LZ4_DLL_IMPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
132
|
+
<TreatWarningAsError>false</TreatWarningAsError>
|
|
133
|
+
<EnablePREfast>false</EnablePREfast>
|
|
134
|
+
<AdditionalIncludeDirectories>..\include</AdditionalIncludeDirectories>
|
|
135
|
+
</ClCompile>
|
|
136
|
+
<Link>
|
|
137
|
+
<SubSystem>Console</SubSystem>
|
|
138
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
139
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
140
|
+
<OptimizeReferences>true</OptimizeReferences>
|
|
141
|
+
<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
142
|
+
<AdditionalDependencies>liblz4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
143
|
+
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
|
|
144
|
+
</Link>
|
|
145
|
+
</ItemDefinitionGroup>
|
|
146
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
147
|
+
<ClCompile>
|
|
148
|
+
<WarningLevel>Level4</WarningLevel>
|
|
149
|
+
<PrecompiledHeader>
|
|
150
|
+
</PrecompiledHeader>
|
|
151
|
+
<Optimization>MaxSpeed</Optimization>
|
|
152
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
153
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
154
|
+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;LZ4_DLL_IMPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
155
|
+
<TreatWarningAsError>false</TreatWarningAsError>
|
|
156
|
+
<EnablePREfast>true</EnablePREfast>
|
|
157
|
+
<AdditionalOptions>/analyze:stacksize295252 %(AdditionalOptions)</AdditionalOptions>
|
|
158
|
+
<AdditionalIncludeDirectories>..\include</AdditionalIncludeDirectories>
|
|
159
|
+
</ClCompile>
|
|
160
|
+
<Link>
|
|
161
|
+
<SubSystem>Console</SubSystem>
|
|
162
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
163
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
164
|
+
<OptimizeReferences>true</OptimizeReferences>
|
|
165
|
+
<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
166
|
+
<AdditionalDependencies>liblz4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
167
|
+
</Link>
|
|
168
|
+
</ItemDefinitionGroup>
|
|
169
|
+
<ItemGroup>
|
|
170
|
+
<ClCompile Include="xxhash.c" />
|
|
171
|
+
<ClCompile Include="fullbench.c" />
|
|
172
|
+
</ItemGroup>
|
|
173
|
+
<ItemGroup>
|
|
174
|
+
<ClInclude Include="..\include\lz4.h" />
|
|
175
|
+
<ClInclude Include="..\include\lz4frame.h" />
|
|
176
|
+
<ClInclude Include="..\include\lz4hc.h" />
|
|
177
|
+
<ClInclude Include="xxhash.h" />
|
|
178
|
+
</ItemGroup>
|
|
179
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
180
|
+
<ImportGroup Label="ExtensionTargets">
|
|
181
|
+
</ImportGroup>
|
|
182
|
+
</Project>
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
LIBRARY liblz4.dll
|
|
2
|
+
EXPORTS
|
|
3
|
+
LZ4F_compressBegin
|
|
4
|
+
LZ4F_compressBound
|
|
5
|
+
LZ4F_compressEnd
|
|
6
|
+
LZ4F_compressFrame
|
|
7
|
+
LZ4F_compressFrameBound
|
|
8
|
+
LZ4F_compressUpdate
|
|
9
|
+
LZ4F_createCompressionContext
|
|
10
|
+
LZ4F_createDecompressionContext
|
|
11
|
+
LZ4F_decompress
|
|
12
|
+
LZ4F_flush
|
|
13
|
+
LZ4F_freeCompressionContext
|
|
14
|
+
LZ4F_freeDecompressionContext
|
|
15
|
+
LZ4F_getErrorName
|
|
16
|
+
LZ4F_getFrameInfo
|
|
17
|
+
LZ4F_getVersion
|
|
18
|
+
LZ4F_isError
|
|
19
|
+
LZ4_compress
|
|
20
|
+
LZ4_compressBound
|
|
21
|
+
LZ4_compressHC
|
|
22
|
+
LZ4_compressHC_continue
|
|
23
|
+
LZ4_compressHC_limitedOutput
|
|
24
|
+
LZ4_compressHC_limitedOutput_continue
|
|
25
|
+
LZ4_compressHC_limitedOutput_withStateHC
|
|
26
|
+
LZ4_compressHC_withStateHC
|
|
27
|
+
LZ4_compress_HC
|
|
28
|
+
LZ4_compress_HC_continue
|
|
29
|
+
LZ4_compress_HC_extStateHC
|
|
30
|
+
LZ4_compress_continue
|
|
31
|
+
LZ4_compress_default
|
|
32
|
+
LZ4_compress_destSize
|
|
33
|
+
LZ4_compress_fast
|
|
34
|
+
LZ4_compress_fast_continue
|
|
35
|
+
LZ4_compress_fast_extState
|
|
36
|
+
LZ4_compress_limitedOutput
|
|
37
|
+
LZ4_compress_limitedOutput_continue
|
|
38
|
+
LZ4_compress_limitedOutput_withState
|
|
39
|
+
LZ4_compress_withState
|
|
40
|
+
LZ4_createStream
|
|
41
|
+
LZ4_createStreamDecode
|
|
42
|
+
LZ4_createStreamHC
|
|
43
|
+
LZ4_decompress_fast
|
|
44
|
+
LZ4_decompress_fast_continue
|
|
45
|
+
LZ4_decompress_fast_usingDict
|
|
46
|
+
LZ4_decompress_safe
|
|
47
|
+
LZ4_decompress_safe_continue
|
|
48
|
+
LZ4_decompress_safe_partial
|
|
49
|
+
LZ4_decompress_safe_usingDict
|
|
50
|
+
LZ4_freeStream
|
|
51
|
+
LZ4_freeStreamDecode
|
|
52
|
+
LZ4_freeStreamHC
|
|
53
|
+
LZ4_loadDict
|
|
54
|
+
LZ4_loadDictHC
|
|
55
|
+
LZ4_resetStream
|
|
56
|
+
LZ4_resetStreamHC
|
|
57
|
+
LZ4_saveDict
|
|
58
|
+
LZ4_saveDictHC
|
|
59
|
+
LZ4_setStreamDecode
|
|
60
|
+
LZ4_sizeofState
|
|
61
|
+
LZ4_sizeofStateHC
|
|
62
|
+
LZ4_versionNumber
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
#include <windows.h>
|
|
2
|
+
|
|
3
|
+
// DLL version information.
|
|
4
|
+
1 VERSIONINFO
|
|
5
|
+
FILEVERSION @LIBVER_MAJOR@,@LIBVER_MINOR@,@LIBVER_PATCH@,0
|
|
6
|
+
PRODUCTVERSION @LIBVER_MAJOR@,@LIBVER_MINOR@,@LIBVER_PATCH@,0
|
|
7
|
+
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
8
|
+
#ifdef _DEBUG
|
|
9
|
+
FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE
|
|
10
|
+
#else
|
|
11
|
+
FILEFLAGS 0
|
|
12
|
+
#endif
|
|
13
|
+
FILEOS VOS_NT_WINDOWS32
|
|
14
|
+
FILETYPE VFT_DLL
|
|
15
|
+
FILESUBTYPE VFT2_UNKNOWN
|
|
16
|
+
BEGIN
|
|
17
|
+
BLOCK "StringFileInfo"
|
|
18
|
+
BEGIN
|
|
19
|
+
BLOCK "040904B0"
|
|
20
|
+
BEGIN
|
|
21
|
+
VALUE "CompanyName", "Yann Collet"
|
|
22
|
+
VALUE "FileDescription", "Extremely fast compression"
|
|
23
|
+
VALUE "FileVersion", "@LIBVER_MAJOR@.@LIBVER_MINOR@.@LIBVER_PATCH@.0"
|
|
24
|
+
VALUE "InternalName", "@LIBLZ4@"
|
|
25
|
+
VALUE "LegalCopyright", "Copyright (C) 2013-2020, Yann Collet"
|
|
26
|
+
VALUE "OriginalFilename", "@LIBLZ4@.dll"
|
|
27
|
+
VALUE "ProductName", "LZ4"
|
|
28
|
+
VALUE "ProductVersion", "@LIBVER_MAJOR@.@LIBVER_MINOR@.@LIBVER_PATCH@.0"
|
|
29
|
+
END
|
|
30
|
+
END
|
|
31
|
+
BLOCK "VarFileInfo"
|
|
32
|
+
BEGIN
|
|
33
|
+
VALUE "Translation", 0x0409, 1200
|
|
34
|
+
END
|
|
35
|
+
END
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# LZ4 - Fast LZ compression algorithm
|
|
2
|
+
# Copyright (C) 2011-2020, Yann Collet.
|
|
3
|
+
# BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
|
4
|
+
|
|
5
|
+
prefix=@PREFIX@
|
|
6
|
+
libdir=@LIBDIR@
|
|
7
|
+
includedir=@INCLUDEDIR@
|
|
8
|
+
|
|
9
|
+
Name: lz4
|
|
10
|
+
Description: extremely fast lossless compression algorithm library
|
|
11
|
+
URL: http://www.lz4.org/
|
|
12
|
+
Version: @VERSION@
|
|
13
|
+
Libs: -L${libdir} -llz4
|
|
14
|
+
Cflags: -I${includedir}
|