home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / os / mswindo / programm / misc / 4872 < prev    next >
Encoding:
Text File  |  1993-01-12  |  1017 b   |  33 lines

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!howland.reston.ans.net!paladin.american.edu!gatech!destroyer!fmsrl7!ef2007!pms706!krishnan
  2. From: krishnan@pms001.pms.ford.com (Krishnan Subramaniam)
  3. Newsgroups: comp.os.ms-windows.programmer.misc
  4. Subject: Re: Need Help with DLLs
  5. Date: 8 Jan 1993 17:33:57 GMT
  6. Organization: Ford Motor Company
  7. Lines: 20
  8. Distribution: world
  9. Message-ID: <1ikdu5INN972@pms706.pms.ford.com>
  10. References: <C0F1Ez.DJo@ns1.nodak.edu>
  11. NNTP-Posting-Host: pms001.pms.ford.com
  12.  
  13. Yes, It is possible.
  14.  
  15. But, you should know the list of functions you may be adding in the
  16. future.
  17.  
  18.   List down All the functions you would add in future.
  19.  
  20.   Include them in the "*.def" file for the DLL
  21.  
  22.   Create dummy functions for all these functions in the corresponding
  23.   library.
  24.  
  25.   Once you link the executable you are all set.
  26.   Any change you make to the DLL should not affect your executable.
  27.  
  28.   You can't make changes to the order of the functions in your "*.def"
  29.   file.
  30.  
  31. Hope this is what you are looking for.
  32.  
  33.