Board index » delphi » Checking which DLLs an .EXE links to?
sim...@super.zippo.com (Simon Oxley)
![]() Delphi Developer |
Mon, 12 Apr 1999 03:00:00 GMT
|
sim...@super.zippo.com (Simon Oxley)
![]() Delphi Developer |
Mon, 12 Apr 1999 03:00:00 GMT
Checking which DLLs an .EXE links to?I would like to use Delphi 2 to check which DLLs an .EXE links to, Thanks. Simon Oxley |
John Morris
![]() Delphi Developer |
Wed, 14 Apr 1999 03:00:00 GMT
Re:Checking which DLLs an .EXE links to?In article <326f3c20.100...@snews.zippo.com>, sim...@super.zippo.com! Quote
|
Jani J?rvin
![]() Delphi Developer |
Thu, 15 Apr 1999 02:00:00 GMT
Re:Checking which DLLs an .EXE links to?Quotesim...@super.zippo.com (Simon Oxley) wrote: that apps can also dynamically link to DLLs (with LoadLibrary, for example). To get those, you need to monitor calls to these API functions (see Petzold's book for details). Quote>Thanks. Jani J?rvinen |
Pat Lougher
![]() Delphi Developer |
Mon, 19 Apr 1999 03:00:00 GMT
Re:Checking which DLLs an .EXE links to?Jani J?rvinen <ja...@dystopia.fi> wrote in article Quote> sim...@super.zippo.com (Simon Oxley) wrote: dumpbin /exports FOO.EXE and you'll see the DLLs your app links directly to. Dumpbin ships with some of the Microsoft toolkits and SDKs - there's likely |
John McTagga
![]() Delphi Developer |
Sun, 25 Apr 1999 03:00:00 GMT
Re:Checking which DLLs an .EXE links to?Quote"Pat Loughery" <p...@mom.isc-br.com> wrote: the following code as a quick hack to interogate a DLL or EXE...It just runs TDUMP against a file, redirects it, then reads it back into a listbox. Like I said, it's a hack, took all of 5 minutes, but it is kinda handy... unit Dump; interface uses type function WinExecAndWait(Path: String; Visibility: word): word; var implementation {$R *.DFM} procedure TForm1.BitBtn1Click(Sender: TObject); { Thanks to whoever's this was originally } procedure TForm1.BitBtn2Click(Sender: TObject); JE McTaggart |
1. BC EXE link VC DLL, can't link 2 DLLs
2. Using ADO components linked between an .exe - .dll interface
3. access message-strings linked to a .dll/.exe
4. Possible to bind-link dll into exe?
5. Build a .exe with staticaly linked DLL
6. linking an owl exe and owl dll
7. Link err with EXE and DLL in BCB4
8. My EXE linking with my DLLs