X-Recipient: archive-cygwin AT delorie DOT com X-Spam-Check-By: sourceware.org Message-ID: <48877048.B7BFB5F@dessent.net> Date: Wed, 23 Jul 2008 10:54:16 -0700 From: Brian Dessent X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) MIME-Version: 1.0 To: Stefano Facchetti CC: cygwin AT cygwin DOT com Subject: Re: Cygwin dll from C# Application References: <18616035 DOT post AT talk DOT nabble DOT com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Reply-To: cygwin AT cygwin DOT com Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Stefano Facchetti wrote: > int MySum(int a, int b) > { > HMODULE h = LoadLibrary("cygwin1.dll"); > void (*init)() = (void(*)()) GetProcAddress(h,"cygwin_dll_init"); > init(); > > return a+b; > } That is not sufficient to dynamically load the library. You need to re-read the part of the FAQ that explains about the scratch area at the bottom of the stack. Brian -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/