MASM32 Downloads
well its easy to make macros in masm,because I am experiencedbut I am less experienced in VC++ way of making macroswhich I wish for,to shorten often used almost same api calls?SendMessage several things becomes very long to write
SendMessage several things becomes very long to write
#define TreeView_GetItemPartRect(hwnd,hitem,prc,partid) do { TVGETITEMPARTRECTINFO info; info.hti = (hitem); info.prc = (prc); info.partID = (partid); (BOOL)SNDMSG((hwnd),TVM_GETITEMPARTRECT,0,(LPARAM)&info); } while (0)