What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » DLL function detection (?) + weird error

DLL function detection (?) + weird error
Author: Message:
felipEx
Scripting Contest Winner
***


Posts: 378
Reputation: 24
35 / Male / Flag
Joined: Jun 2006
RE: DLL function detection (?) + weird error
it's a bit late for a reply (A)

quote:
Originally posted by SmokingCookie
I actually mean, that as soon as Windows calls a function in a DLL, I'd like to know of its name and parameters.. I have DLLExp, which only reads the DLL's function names and some weird "address" thing..
Have you tried with SpyStudio?
Take a look at the picture, I installed a hook (using SpyStudio) to detect when 'MessageBox' is called ;D

[Image: spystudiovs5ee6.th.png]
so, when you call 'MessageBox'  (in a script, for example) you will see the function's name and its parameters (useful when you want to learn about external application's behavior)
code:
Interop.Call('user32', 'MessageBoxW', 0, 'text', 'title', 64)


about the second question... try this:
code:
for(var e = new Enumerator(Messenger.MyContacts) ; !e.atEnd(); e.moveNext())
{
    Debug.Trace(e.item().Email);
// WndEmail.Combo_AddItem("Email", e.item().Email);   
}

:)
04-13-2008 08:30 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
DLL function detection (?) + weird error - by SmokingCookie on 04-13-2008 at 05:14 PM
RE: DLL function detection (?) + weird error - by ShawnZ on 04-13-2008 at 05:52 PM
RE: RE: DLL function detection (?) + weird error - by SmokingCookie on 04-13-2008 at 06:00 PM
RE: DLL function detection (?) + weird error - by ShawnZ on 04-13-2008 at 06:03 PM
RE: DLL function detection (?) + weird error - by SmokingCookie on 04-13-2008 at 06:07 PM
RE: DLL function detection (?) + weird error - by felipEx on 04-13-2008 at 08:30 PM
RE: DLL function detection (?) + weird error - by matty on 04-14-2008 at 11:44 AM
RE: DLL function detection (?) + weird error - by SmokingCookie on 04-14-2008 at 02:52 PM
RE: DLL function detection (?) + weird error - by Matti on 04-14-2008 at 04:13 PM
RE: DLL function detection (?) + weird error - by SmokingCookie on 04-14-2008 at 04:19 PM
RE: DLL function detection (?) + weird error - by Matti on 04-14-2008 at 04:40 PM
RE: DLL function detection (?) + weird error - by SmokingCookie on 04-14-2008 at 04:47 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On