This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: Cygwin dll from C# Application


I'm new on C++ programming..  
Can you write an example of 4K scratch space at the bottom of stack on my
simple code:

#include <stdio.h>
#include <windows.h>

#define DllExport extern "C" __declspec(dllexport)

DllExport int Somma(int a,int b);

int Somma(int a, int b)
{
   HMODULE h = LoadLibrary("cygwin1.dll");
   void (*init)() = (void(*)()) GetProcAddress(h,"cygwin_dll_init");
   init();

   return a+b;
}

Thanks,
Fad.


Dave Korn wrote:
> 
> The path refers to a location in the sourceware.org CVS repository.  You
> could check out the winsup module using CVS, you could use setup.exe to
> install the source for your current version of the Cygwin dll and look for
> it there, or you can just browse it through the sourceware.org cvsweb
> interface, at:
> 
> http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/cygwin/how-cygtls-works.txt?
> cvsroot=src
> 
>   Click the 'download' link on that page to get a copy of the latest
> revision.
> 
>     cheers,
>       DaveK
> 

-- 
View this message in context: http://www.nabble.com/Cygwin-dll-from-C--Application-tp18616035p18618719.html
Sent from the Cygwin list mailing list archive at Nabble.com.


--
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/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]