Funcion:
Código:
static const wchar_t *lol=L"";
LRESULT WINAPI BSSSendMessageW(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
{
if ( msg == LVM_INSERTITEMW || msg == LVM_SETITEMW)//Intercepts LVM_INSERTITEM and LVM_SETITEM messages
{
if (!lstrcmpW(((LVITEMW*)lparam)->pszText, lol))//The lparam is a LVITEM* struct.
{
return 0;//we simply return 0 (and we do not call the real SendMessage function.
}
return 0;
}
return base.SendMessage(hwnd, msg, wparam, lparam);//Calls the real SendMessage function.
}
Int main:
Código:
int main()
{
//calling api function
}
Como podría a la función de windows api desde el main.