rockbox/rbutil/rbutilApp.h
Christi Scarborough e669709994 Right. Fixed line feeds. archos.ico is binary. Added a couple more files rockbox leaves in the root to the list.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11727 a1c6a512-1295-4272-9138-f99709370657
2006-12-11 22:22:36 +00:00

41 lines
832 B
C++

//---------------------------------------------------------------------------
//
// Name: rbutilApp.h
// Author: Christi Scarborough
// Created: 03/12/2005 00:35:02
//
//---------------------------------------------------------------------------
#include <wx/wxprec.h>
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
#include <wx/msgdlg.h>
#include <wx/config.h>
#include <wx/confbase.h>
#include <wx/fileconf.h>
#include <wx/string.h>
#include <wx/wfstream.h>
#include <wx/fs_inet.h>
#include <wx/fs_zip.h>
#include <wx/stdpaths.h>
#include "rbutilFrm.h"
#include "rbutil.h"
class rbutilFrmApp:public wxApp
{
public:
bool OnInit();
int OnExit();
bool ReadGlobalConfig(rbutilFrm* myFrame);
void ReadUserConfig(void);
void WriteUserConfig(void);
};