home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!zaphod.mps.ohio-state.edu!howland.reston.ans.net!paladin.american.edu!gatech!destroyer!fmsrl7!ef2007!pms706!krishnan
- From: krishnan@pms001.pms.ford.com (Krishnan Subramaniam)
- Newsgroups: comp.os.ms-windows.programmer.misc
- Subject: Re: Need Help with DLLs
- Date: 8 Jan 1993 17:33:57 GMT
- Organization: Ford Motor Company
- Lines: 20
- Distribution: world
- Message-ID: <1ikdu5INN972@pms706.pms.ford.com>
- References: <C0F1Ez.DJo@ns1.nodak.edu>
- NNTP-Posting-Host: pms001.pms.ford.com
-
- Yes, It is possible.
-
- But, you should know the list of functions you may be adding in the
- future.
-
- List down All the functions you would add in future.
-
- Include them in the "*.def" file for the DLL
-
- Create dummy functions for all these functions in the corresponding
- library.
-
- Once you link the executable you are all set.
- Any change you make to the DLL should not affect your executable.
-
- You can't make changes to the order of the functions in your "*.def"
- file.
-
- Hope this is what you are looking for.
-
-