hi all,
help for this bunction DrawText http://msdn.microsoft.com/en-us/libr...=vs.85%29.aspx
help for this bunction DrawText http://msdn.microsoft.com/en-us/libr...=vs.85%29.aspx
PHP Code:
function DrawText(hDC, nLeft, nRight, nTop, nBottom, strString)
local format = "DT_END_ELLIPSIS | DT_MODIFYSTRING";
Memory.OpenLibrary(0, "user32.dll")
local openDrawText = Memory.OpenFunction(0, "DrawText", DLL_CALL_STDCALL, DLL_RETURN_VOID);
local margin = Memory.CreateStructure("int,int,int,int");
if( margin > 0)then
Memory.SetStructureData(margin, 1, 0, nLeft, "");
Memory.SetStructureData(margin, 2, 0, nRight, "");
Memory.SetStructureData(margin, 3, 0, nTop, "");
Memory.SetStructureData(margin, 4, 0, nBottom, "");
Memory.CallFunction(openDrawText, hDC, strString, -1, margin, format)
end
Memory.CloseLibrary(0);
Memory.Free();
end
Comment