#ifndef __CDESKTOP_APPL_H__ #define __CDESKTOP_APPL_H__ #include "config.h" #include "event.h" #include "misc.h" #ifdef __cplusplus extern "C" { #endif /* appl.h Application stuff. C-Desktop Copyright (C)1998, Brett Porter. */ /* FUNCTION PROTOTYPES */ extern void Application_Execute( void ); extern bool Application_HandleCommand( int aID ); extern bool Application_CheckFileOverwrite( const char *aFilename, bool aDefault ); extern int Application_ConfirmDialog( const char *aString, bool aYesDefault ); extern void Application_MessageBox( const char *aMessage ); extern bool Application_CheckConfigVar( T_ConfigVar *aVar ); extern void Application_Wait( E_MessageType aWaitCondition ); extern void Application_RegisterConfigVars( void ); extern void Application_AboutCDesktop( void ); #ifdef __cplusplus } #endif #endif