How to know all function in the famous coredll.dll

  • Thread starter Thread starter Franky
  • Start date Start date
F

Franky

How to know all function in the famous coredll.dll?

Most of time in P/Invoke the exemple call the coredll.dll.
how to know all is inside this one?

____________________
Franky
(e-mail address removed)
 
Or run the depends.exe, dependency viewer, program on it.

Come to think of it, though, isn't the coredll.dll in ROM? If so, you may
find it difficult to get it to your desktop to run any of these programs on
it (Chris and I both work with the OS at a build level, so we can easily get
a hold of coredll.dll before it gets put into ROM form). In that case,
you'd need to be able to scan the PE32 (portable executable 32-bit, I
think), file format of the DLL and looks for exports.

What device are you wondering about?

Paul T.
 
If you have an SDK installed, you can dumpbin coredll.lib instead of the dll
itself.

For example, if you have the PPC02 SDK installed, it's here:
C:\Windows CE Tools\wce300\Pocket PC 2002\lib\arm

--
Chris Tacke, eMVP
Co-Founder and Advisory Board Member
www.OpenNETCF.org
---
Windows CE Product Manager
Applied Data Systems
www.applieddata.net
 
Back
Top