well, i would post a link, but... well... i dont have a link to post

someone else had the dll in their script, and i just used it...
it is a very common dll in MSN Messenger scripts :
ssl.dll
im beary confused!
edit:
here is my current code (with stdcall put in there

):
function msnp(mWnd, aWnd: HWND; var data, parms: PChar; show, nopause:boolean): integer; stdcall; external 'MSN\ssl.dll' name 'msnp8';
function ssl(data2: PChar): String;
var data,parms: PChar;
mWnd,aWnd: HWND;
show,nopause: boolean;
begin
data := pchar(username + ' > ' + pword + ' > ' + data2);
parms := '';
mWnd := Chatting.Handle;
aWnd := mWnd;
show := false;
nopause := true;
msnp(mWnd,aWnd,data,parms,show,nopause);
ssl := string(data);
end;
'username' and 'pword' are predefined to be the username and password of the user.
Chatting is my main form.