var fDesc=new Array(); fDesc[0] = "MMD Logger with GDI tool is windows console-like program designed to log, save and analyze debug messages.

It helps C/C programmers debug and profile their code.

With MMD logger you can easily control program flow, time and memory consuming etc.

Debug features are switching on/off by defininig/undefining one parameter and no additional code is generated when logging is off.

GDI tool reports GDI object creation and deletion, GDI memory leaks, and GDI function failures. If you write any program that uses Windows GDI functions, such as CreateBrush, CreatePen, LoadBitmap, GetDC etc, GDI tool will help you to avoid wasting memory by reporting undeleted objects."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }