From: "Christopher Nelson" To: Subject: Re: Hello World and File size Date: Mon, 14 Jun 1999 22:58:25 -0600 Message-ID: <01beb6eb$b3689d20$LocalHost@thendren> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.71.1712.3 X-MimeOLE: Produced By Microsoft MimeOLE V4.71.1712.3 Reply-To: djgpp AT delorie DOT com >Wouldn't all these DLL problems disappear if applications >kept their DLL's to themselves instead of dumping them into >one big DLL pool? This would also make application removal >much simpler. That would almost entirely negate the purpose behind DLL's in the first place. A lot of the idea is to save disk space and have a common code pool. If they all had their own copies of a dll, you might as well just statically link them. -={C}=-