home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 April / PCWorld_2000-04_cd.bin / Software / Servis / Devc / _SETUP.6 / Group16 / readme.txt < prev    next >
Text File  |  1997-11-26  |  2KB  |  40 lines

  1. This directory contains two examples of building DLLs. The exe.c and dll.c
  2. files are used to build a very simple example DLL with a function that
  3. adds two numbers together (and prints some text at the same time). The
  4. exe.c program links to the DLL and prints the results of the function
  5. call.
  6.  
  7. The C++ example "silly" is more interesting because it involves a DLL which
  8. contains the code for a C++ class. The CSilly class has all of its code in
  9. the sillydll.cpp source file, which is used to build the silly.dll. The
  10. silly.cpp source code builds the main silly.exe executable which makes a
  11. dynamic instance of the object and calls its member functions.
  12.  
  13. The C++ silly.def file was generated by doing a nm of sillydll.o after it
  14. was generated and then getting the symbol names from that. Removing the
  15. leading underscore produces the appropriate name to include in the EXPORTS
  16. section. Notice there are a few weird functions.
  17.  
  18. Since there are now several different versions of the GNU compiler capable
  19. of doing this, and they each seem to have different requirements for exports
  20. for classes, it has gotten kind of messy. The silly.def file here is for
  21. use with the native Mingw32 build of the EGCS version of GCC. The silly.def.old
  22. file was the def file I used when I was using Jan-Jaap's Mingw32 native port
  23. of GCC. The Cygnus version is different again, if I recall correctly, but I
  24. don't have it hanging around anymore.
  25.  
  26. The jamfile builds all the components from the raw sources.
  27.  
  28. The expected output of exe.exe and silly.exe are in the files exe.exp
  29. and silly.exp.
  30.  
  31.  
  32. The source code in this directory is in the PUBLIC DOMAIN and can be
  33. used or abused as you see fit.  There is NO WARRANTY for this code,
  34. including (but not limited to) implied warranties of MERCHANTABILITY
  35. or FITNESS FOR A PARTICULAR PURPOSE.
  36.  
  37.  
  38. Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
  39.  
  40.