Platon Technologies
not logged in Login Registration
EnglishSlovak
open source software development celebrating 10 years of open source development! Saturday, April 20, 2024

File: [Platon] / tucniak / term / tt_message.c (download)

Revision 1.1.1.1 (vendor branch), Fri Nov 11 16:08:27 2005 UTC (18 years, 5 months ago) by koli


Changes since 1.1: +0 -0 lines

Initial import

// Copyright (c) 2003 Juraj Kolesár (koli) <koli@koli.sk>               
#include "tt.h"

/******************************************************************************/
int tt_message(WINDOW *parent, char *str) {
    int Status;
    WINDOW *win = newwin(5, 40, 10, 20);
    box(win,0,0);
    mvwprintw(win, 2, 5, str);
    wrefresh(win);
    Status = tt_input();
    delwin(win);
    touchwin(parent);
    wrefresh(parent);
    return(Status);
}

Platon Group <platon@platon.org> http://platon.org/
Copyright © 2002-2006 Platon Group
Site powered by Metafox CMS
Go to Top