From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4101 invoked by alias); 28 May 2002 22:16:53 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 4086 invoked from network); 28 May 2002 22:16:48 -0000 Received: from unknown (HELO hotmail.com) (216.33.237.196) by sources.redhat.com with SMTP; 28 May 2002 22:16:48 -0000 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 28 May 2002 15:16:48 -0700 Received: from 206.16.11.200 by lw7fd.law7.hotmail.msn.com with HTTP; Tue, 28 May 2002 22:16:48 GMT X-Originating-IP: [206.16.11.200] From: "C. J." To: cygwin@cygwin.com Bcc: Subject: cygwin_dll_init() crash help? Date: Wed, 29 May 2002 01:20:00 -0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 28 May 2002 22:16:48.0492 (UTC) FILETIME=[5C1A5AC0:01C20695] X-SW-Source: 2002-05/txt/msg01733.txt.bz2 Could someone post some code that loads cygwin1.dll dynamically successfully? I've checked the mailing archives and people claim to have done this using cygwin_dll_init(), but all I get is a seg fault. My goal is just to call cygwin_conv_to_win32_path() from my VC-built program. Here is what I tried: -------------- HMODULE hCygwin = LoadLibrary("cygwin1.dll"); if(!hCygwin) { cerr << "Error: couldn't find cygwin1.dll!\n"; exit(1); } CYGWIN_CONV2WIN32PATHFN cygwin_conv_to_win32_path = (CYGWIN_CONV2WIN32PATHFN) GetProcAddress(hCygwin,"cygwin_conv_to_win32_path"); if(!cygwin_conv_to_win32_path) { cerr << "GetProcAddr for cygwin failed!\n"; exit(1); } // typedef void (__stdcall *CYGWIN_DLLINITFN)(void); typedef void (*CYGWIN_DLLINITFN)(void); CYGWIN_DLLINITFN cygwin_dll_init; cygwin_dll_init = (CYGWIN_DLLINITFN) GetProcAddress(hCygwin,"cygwin_dll_init"); if(!cygwin_dll_init) { cerr << "GetProcAddr for cygwin failed!\n"; exit(1); } cygwin_dll_init(); // seg fault ------ Thanks. _________________________________________________________________ Join the world’s largest e-mail service with MSN Hotmail. http://www.hotmail.com -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/