Creating addons for Messenger

Reapz

Well-known member
Joined
Dec 15, 2002
Messages
74
Im toying with the idea of creating an addon for MSN/Windows Messenger but havent got a clue where to start. Im just after some guildlines and pointers really and if anyone knows any good tutorials regarding creating addons for other apps that would be helpful.

Cheers,
Andy.
 
is it possible to edit MSN messenger in the first place?
I dunno, hit control alt delete, select MSN messenger and hit debug..

or if u mean plugins?
I dont think MSN messenger 6 supports Plugins but trillian does :p
Trillian is like AIM, MSN, Y!, ICQ and IRC combined..
 
Yea I meant plugins. Anyway, the MsgPlus2 Addon for Messenger does have an API that supports plugins. If Ive understood it correctly its just a case of adding your code to a template. Apparently its a little limited but its a start.
 
MSN Messenger 6 does not have plugin support, MsgPlus actually is a program that is always running, it finds the MSN Messenger window and hacks it(SubClass) then loads in new menus and also hacks the RichTextBox in the chat view detecting characters and converting them (like sounds)

Youd have to have a loop, a class inheriting NativeWindow, and enumerate process calls to search for MSN Messenger, when you find it, give its hWnd to the NativeWindow and you should be able to edit it. Im not sure how to attach managed menus to unmanaged windows but since the Managed Menu wraps the Unmanaged Menu APIs it should be possible otherwise use the APIs directly
 
API for Messenger programming

Some time ago I was found a page on msdn.microsoft.com teaching how to use MSN Messengers API with code samples written in c++ (these api are used by Messenger Plus), but now I dont found it...

Searching quickly Ive found this:

http://www.codeproject.com/com/msn_messenger.asp

it could be really interessant for all MSN Messenger developers.

Good Luck!


Best Regards
kub
 
Back
Top