problem: create a dll

rjentsch@HTWM.De rjentsch@HTWM.De
Fri Apr 24 03:06:00 GMT 1998


Hello

I would create a dll under win95, but it doesnt work. 
The example from cygnus also doesnt work.
The compiler report no errors and create a dll and an executable, but if
i try to execute the program, my system says only "unknown file format".

For the example i use the dlldemo.bat with all of the c,h,def - files

dll.c
--------------------------------------------
#include <windows.h>

int test()
{ 
  return 3;
}


WINAPI dll_entry(int a,int b,int c)
{
  return 1;
}


exe.c
---------------------------------
#include <stdio.h> 

const char *in_a_dll(char a);
 
main() 
{ 
  printf("Hello here I am ");
  printf("%d\n", test); // If I delete this line the program starts
}
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".



More information about the Cygwin mailing list