diff options
Diffstat (limited to 'win32/DLL_FAQ.txt')
-rw-r--r-- | win32/DLL_FAQ.txt | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/win32/DLL_FAQ.txt b/win32/DLL_FAQ.txt index c44bce5..80b6b42 100644 --- a/win32/DLL_FAQ.txt +++ b/win32/DLL_FAQ.txt | |||
@@ -334,9 +334,9 @@ in the zlib distribution, or at the following location: | |||
334 | link them in ZLIB1.DLL, and export them? | 334 | link them in ZLIB1.DLL, and export them? |
335 | 335 | ||
336 | - No. A legitimate build of ZLIB1.DLL must not include code | 336 | - No. A legitimate build of ZLIB1.DLL must not include code |
337 | that does not originate from the official zlib sources. But | 337 | that does not originate from the official zlib source code. |
338 | you can make your own private build, and give it a different | 338 | But you can make your own private DLL build, under a different |
339 | name, as suggested in the previous answer. | 339 | file name, as suggested in the previous answer. |
340 | 340 | ||
341 | For example, in Borland Delphi and C++ Builder, zlib is a part | 341 | For example, in Borland Delphi and C++ Builder, zlib is a part |
342 | of the standard VCL library. If an application links to VCL | 342 | of the standard VCL library. If an application links to VCL |
@@ -345,7 +345,16 @@ in the zlib distribution, or at the following location: | |||
345 | incompatible ZLIB1.DLL. | 345 | incompatible ZLIB1.DLL. |
346 | 346 | ||
347 | 347 | ||
348 | 14. I made my own ZLIB1.DLL build. Can I test it for compliance? | 348 | 14. May I remove some functionality out of ZLIB1.DLL, by enabling |
349 | macros like NO_GZCOMPRESS or NO_GZIP at compile time? | ||
350 | |||
351 | - No. A legitimate build of ZLIB1.DLL must provide the complete | ||
352 | zlib functionality, as implemented in the official zlib source | ||
353 | code. But you can make your own private DLL build, under a | ||
354 | different file name, as suggested in the previous answer. | ||
355 | |||
356 | |||
357 | 15. I made my own ZLIB1.DLL build. Can I test it for compliance? | ||
349 | 358 | ||
350 | - We prefer that you download the official DLL from the zlib | 359 | - We prefer that you download the official DLL from the zlib |
351 | web site. If you need something peculiar from this DLL, you | 360 | web site. If you need something peculiar from this DLL, you |
@@ -356,3 +365,7 @@ in the zlib distribution, or at the following location: | |||
356 | Running these test programs is not a guarantee of compliance, | 365 | Running these test programs is not a guarantee of compliance, |
357 | but a failure can imply a detected problem. | 366 | but a failure can imply a detected problem. |
358 | 367 | ||
368 | ** | ||
369 | |||
370 | This document is written and maintained by | ||
371 | Cosmin Truta <cosmint@cs.ubbcluj.ro> | ||