Convert your old WinDom applications From WinDom version 1.20 (November 2002) From WinDom version 1.00 (November 2000)
Programming guideline of WinDom

From WinDom version 1.10 (September 2001)

Frame structures

As frame structures have been removed from public acces, we use FrameGet() to acces information.

Remplace :

	line = win->frame.line;
	col = win->frame.col;
by

	FrameGet( win, WF_CELL, &line, &col);