quote:
Originally posted by Patchou
lol.. and why would you want to know something like that hum?
Load Plus! or maybe replace Plus!
?
Edit: I tried load using no params (void), and that seemed to work fine. The DLL is loaded, and confirmed by GetModuleHandle API. But I loaded it into my own program, not Messenger.
Here's my stupid VB6 code:
code:
Private Declare Function Initialize Lib "MsgPlusLive" ()
Private Declare Function GetModuleHandle Lib "kernel32" Alias "GetModuleHandleA" _
(ByVal lpModuleName As String) As Long
Private Sub Form_Load()
Initialize
MsgBox "Plus Loaded?"
If GetModuleHandle("MsgPlusLive.dll") > 0 Then
MsgBox "Plus is loaded!"
End If
End Sub
I wrote it in VB6 because I'm using Visual Studio 2005 for C++, which takes like an half hour to start