Public Structure MyTFRAME
Public hw As IntPtr
Public width As Integer
Public height As Integer
Public pitch As Integer
Public frameSize As Integer
Public frame As IntPtr
Public bpp As Byte
Public style As Byte
Public udata As IntPtr
End Structure 'MyTFRAME
int renderAbout (TWINAMP *wa, TFRAME *frame, void *data)
{
TLPRINTR rect = {0,2,frame->width-1,frame->height-1,0,0,0,0};
lClearFrame(frame);
lPrintEx(frame, &rect, LFTW_SNAP, PF_MIDDLEJUSTIFY|PF_CLIPWRAP|PF_RESETXY, LPRT_CPY,\
"Compiled with myLCD v%s\nmylcd.sourceforge.net\n%s", (char*)lVersion(), mySELF);
lDrawRectangleDotted(frame,0,0,frame->width-1, frame->height-1, LSP_SET);
return 1;
}