From WikiChip
Difference between revisions of "mirc/dynamic-link library"
< mirc

(Created page with "== Prototype == The exported function must have the following function prototype: <source lang="c">#include <windows.h> int funcName(HWND mWnd, HWND aWnd, char *data, char *p...")
 
m (added Category:MIRC using HotCat)
Line 6: Line 6:
  
 
'''Note:''' These functions must use the [[stdcall calling convention]]. (This is also the standard calling convention for all other Microsoft [[Win32 API]] functions.)
 
'''Note:''' These functions must use the [[stdcall calling convention]]. (This is also the standard calling convention for all other Microsoft [[Win32 API]] functions.)
 +
 +
[[Category:MIRC]]

Revision as of 11:20, 20 July 2014

Prototype

The exported function must have the following function prototype:

#include <windows.h>
int funcName(HWND mWnd, HWND aWnd, char *data, char *parms, BOOL show, BOOL nopause);

Note: These functions must use the stdcall calling convention. (This is also the standard calling convention for all other Microsoft Win32 API functions.)