DLLs

Associate
Joined
19 Oct 2002
Posts
1,521
Location
Chippenham
Hey all,
Been programming for ages now, and every now and then i end up using a function from a DLL, such as this:
Code:
<System.Runtime.InteropServices.DllImport("coredll.dll")> _
Private Shared Function CeRunAppAtEvent(ByVal AppName As String, ByVal WhichEvent As Integer) As Boolean
ive often wondered what else is contained in the most common DLLs like core.
Is there anywhere i can go that will give me such a list?

The results i get back from google are just thos 'fix dll errors in minutes' adverts lol
 
Back
Top Bottom