how to use dll created by cygwin in MS Visual C++?

2004-03-20 Thread wxWindows_study
I follow cygwin's user guide,create a dll as following: // // this the dll file :@test_dll.c //created by songyewen 2004/03/21 // #include int show_hello() { printf("this is the testing s

Re: how to use dll created by cygwin in MS Visual C++?

2004-03-21 Thread Alexander Gottwald
wxWindows_study wrote: > But I failed to use the test_dll.dll in MS Visual C++? This question is not specific to the cygwin xserver and should go to the [EMAIL PROTECTED] mailinglist. But I think this question is asked quite often so I'd advice you to look into the FAQ and the other documentation

Re: how to use dll created by cygwin in MS Visual C++?

2004-03-21 Thread Harold L Hunt II
This has nothing to do with running the X Window System on Cygwin. Try another mailing list. Harold wxWindows_study wrote: > I follow cygwin's user guide,create a dll as following: > > // > // this the dll file :@test_dll.c > //created by son