Added VID_SetCaption (title) support for little more portability.

This commit is contained in:
Dabb 2000-07-14 16:08:23 +00:00
parent 5a1ef7ca3d
commit 0e2bc6adb3
2 changed files with 11 additions and 0 deletions

View file

@ -3443,3 +3443,9 @@ void VID_MenuKey (int key)
break;
}
}
void VID_SetCaption (char *text)
{
SetWindowText(mainwindow,(LPSTR) text);
}

View file

@ -1956,3 +1956,8 @@ void VID_MenuKey (int key)
break;
}
}
void VID_SetCaption (char *text)
{
SetWindowText(mainwindow,(LPSTR) text);
}