-
```
All examples compile except example 6.
It seems you never tested it.
1.)
For example 6 is missing the VCPROJ file.
2.)
In VS2010 it throws a lot of errors.
1>e:\workspace\miniz\example6.c(36):…
-
```
All examples compile except example 6.
It seems you never tested it.
1.)
For example 6 is missing the VCPROJ file.
2.)
In VS2010 it throws a lot of errors.
1>e:\workspace\miniz\example6.c(36):…
-
```
All examples compile except example 6.
It seems you never tested it.
1.)
For example 6 is missing the VCPROJ file.
2.)
In VS2010 it throws a lot of errors.
1>e:\workspace\miniz\example6.c(36):…
-
```
All examples compile except example 6.
It seems you never tested it.
1.)
For example 6 is missing the VCPROJ file.
2.)
In VS2010 it throws a lot of errors.
1>e:\workspace\miniz\example6.c(36):…
-
```
All examples compile except example 6.
It seems you never tested it.
1.)
For example 6 is missing the VCPROJ file.
2.)
In VS2010 it throws a lot of errors.
1>e:\workspace\miniz\example6.c(36):…
-
```
What steps will reproduce the problem?
1. gcc -Wall -Werror -O2 miniz.c
2.
3.
What is the expected output? What do you see instead?
Expected output: Compiler errors due to no main().
Actual outpu…
-
```
What steps will reproduce the problem?
1. gcc -Wall -Werror -O2 miniz.c
2.
3.
What is the expected output? What do you see instead?
Expected output: Compiler errors due to no main().
Actual outpu…
-
```
What steps will reproduce the problem?
1.Create new console project in VisualStudio2012
2.Add miniz.c and main.c
3.Addd "#include 'miniz.c' " before "main" function
What is the expected output? W…
-
```
What steps will reproduce the problem?
1.Create new console project in VisualStudio2012
2.Add miniz.c and main.c
3.Addd "#include 'miniz.c' " before "main" function
What is the expected output? W…
-
```
miniz is designed as a single file to be included by another source file via
#include "miniz.c" as stated in the example applications. This works fine when
miniz is used within one project. When…