i did not get far with this DLL... was wondering if anyone could help me, with maybe 1 of the functions and i'll try and figure the rest out..

was looking at this page... but don't get how to use it..
http://msdn.microsoft.com/library/defaul...sktopwindow.asp

Code:
;
;Start's here...
;
#pragma check_stack(off)
#pragma comment(linker,"/OPT:NOWIN98")
#include <windows.h>

// general constants
#define mFunc(x) int __stdcall x(HWND mWnd, HWND aWnd, char *data, char *parms, BOOL show, BOOL nopause)

// Structures
typedef struct {
DWORD mVersion;
HWND mHwnd;
BOOL mKeep;
} LOADINFO;
HWND mHWnd;

mFunc(Desktop)
{
//Sticks any window onto the desktop 
}

mFunc(UnDesktop)
{
//Put's desktop window back into mIRC 
}

mFunc(IsDesktop)
{
//Checks to see if a window is on the desktop
}