/* apccomm_am_main.h
   Part of "APCComm" 
   Copyright (C) 2002 Ralf Hoffmann
   Contact: ralf.hoffmann@epost.de

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.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  
*/
/* $Id: apccomm_am_main.h,v 1.1 2002/06/11 00:14:25 ralf Exp $ */

#ifndef APCCOMM_MAIN_H
#define APCCOMM_MAIN_H

#include "apccomm_gui_includes.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>

enum guimodes { GUIMODE_RUN = 0, GUIMODE_QUIT, GUIMODE_SEND, GUIMODE_RECEIVE };

extern enum guimodes mode;
extern int selected_lvc;

void requestReceiveDir( void );
void requestAndAddFiles( void );
void removeSelectedEntry( void );
void applySLVSG( void );

#endif

