Andy's CarPlayer

/***************************************************************************
                          display.h  -  description
                             -------------------
    begin                : Mon Jan 31 2005
    copyright            : (C) 2005 by Andy
    email                : 
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *                      Global Variables                                   *
 *                                                                         *
 ***************************************************************************/

  typedef struct _win_border_struct
 {
   chtype ls, rs, ts, bs, tl, tr, bl, br;
 } WIN_BORDER;

 typedef struct _WIN_struct
 {
   int startx, starty;
   int height, width;
   WIN_BORDER border;
 } WIN;

  WINDOW *player_win[1];

/***************************************************************************
 *                                                                         *
 *                      Global Defines                                     *
 *                                                                         *
 ***************************************************************************/

 #define MAIN_SCREEN 0
 #define INFO_SCREEN 1

/***************************************************************************
 *                                                                         *
 *                      Procedure Declares                                 *
 *                                                                         *
 ***************************************************************************/

 void CRT_setup();
 void init_win_params(WIN *p_win);
 void create_box(WIN *win, int _bool);
 void main_menu();
 void clear_win(WINDOW *win);
 void end_windows();
 void play_album_number(int Album);
 void play_album();