aboutsummaryrefslogtreecommitdiff
path: root/zlib/contrib/delphi2/zlib32.cpp
diff options
context:
space:
mode:
authorTom Tromey <tromey@gcc.gnu.org>2004-10-11 18:45:43 +0000
committerTom Tromey <tromey@gcc.gnu.org>2004-10-11 18:45:43 +0000
commit17210dff5d26c1e820e0cd678a46cf2795c41e4c (patch)
tree01e6e6bb5683a568f3e4d7be40728b9b503640c4 /zlib/contrib/delphi2/zlib32.cpp
parent1325e2b519f4a1b3d9fbd92ece22bdf3e4df0b06 (diff)
downloadgcc-17210dff5d26c1e820e0cd678a46cf2795c41e4c.zip
gcc-17210dff5d26c1e820e0cd678a46cf2795c41e4c.tar.gz
gcc-17210dff5d26c1e820e0cd678a46cf2795c41e4c.tar.bz2
re PR libgcj/14856 (Update bundled zlib)
PR libgcj/14856: * Imported zlib 1.2.1; merged local changes. From-SVN: r88898
Diffstat (limited to 'zlib/contrib/delphi2/zlib32.cpp')
-rw-r--r--zlib/contrib/delphi2/zlib32.cpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/zlib/contrib/delphi2/zlib32.cpp b/zlib/contrib/delphi2/zlib32.cpp
deleted file mode 100644
index 7372f6b..0000000
--- a/zlib/contrib/delphi2/zlib32.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-
-#include <windows.h>
-#pragma hdrstop
-#include <condefs.h>
-
-
-//---------------------------------------------------------------------------
-// Important note about DLL memory management in a VCL DLL:
-//
-//
-//
-// If your DLL uses VCL and exports any functions that pass VCL String objects
-// (or structs/classes containing nested Strings) as parameter or function
-// results, you will need to build both your DLL project and any EXE projects
-// that use your DLL with the dynamic RTL (the RTL DLL). This will change your
-// DLL and its calling EXE's to use BORLNDMM.DLL as their memory manager. In
-// these cases, the file BORLNDMM.DLL should be deployed along with your DLL
-// and the RTL DLL (CP3240MT.DLL). To avoid the requiring BORLNDMM.DLL in
-// these situations, pass string information using "char *" or ShortString
-// parameters and then link with the static RTL.
-//
-//---------------------------------------------------------------------------
-USEUNIT("adler32.c");
-USEUNIT("compress.c");
-USEUNIT("crc32.c");
-USEUNIT("deflate.c");
-USEUNIT("gzio.c");
-USEUNIT("infblock.c");
-USEUNIT("infcodes.c");
-USEUNIT("inffast.c");
-USEUNIT("inflate.c");
-USEUNIT("inftrees.c");
-USEUNIT("infutil.c");
-USEUNIT("trees.c");
-USEUNIT("uncompr.c");
-USEUNIT("zutil.c");
-//---------------------------------------------------------------------------
-#pragma argsused
-int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
-{
- return 1;
-}