Zitat:
geht das überhaupt mir Delphi?
Die Frage sollte man nie stellen... Delphi kann (wenn es nicht gerade um Treiber & Co geht) alles... ist nur die Frage ob der Programmierer es kann.
Guck dir in der mIRC Hilfe mal an wie eine function für mirc in der
dll auszusehen hat:
Zitat:
Technical notes
This section contains technical information for programmers who want to create DLLs for use with mIRC.
The routine in the
DLL being called must be of the form:
int __stdcall procname(HWND mWnd, HWND aWnd, char *data, char *parms, BOOL show, BOOL nopause)
also in Delphi so:
Zitat:
function procname(mWnd, aWnd: HWND; data, parms: PChar; show, nopause: boolean): integer; stdcall;
greetz