00001 /* 00002 * Roadnav 00003 * LCDprocInterface.h 00004 * 00005 * Copyright (c) 2004 - 2008 Richard L. Lynch <rllynch@users.sourceforge.net> 00006 * 00007 * This program is free software; you can redistribute it and/or 00008 * modify it under the terms of version 2 of the GNU General Public License 00009 * as published by the Free Software Foundation. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00019 */ 00020 00021 ////////////////////////////////////////////////////////////////////////////// 00022 /// \file 00023 /// 00024 /// Provides functions for interfacing to an LCDproc server. 00025 /// 00026 ////////////////////////////////////////////////////////////////////////////// 00027 00028 #ifndef LCDPROCINTERFACE_H 00029 #define LCDPROCINTERFACE_H 00030 00031 #include <vector> 00032 00033 #include "LCDprocSettings.h" 00034 00035 LCDprocSettings GetLCDprocSettings(); 00036 void SetLCDprocSettings(LCDprocSettings cSettings); 00037 wxArrayString * GetLCDprocVariableNames(); 00038 bool LCDprocInit(); 00039 bool LCDprocSetText(wxString strName, wxString strValue); 00040 void LCDprocCleanup(); 00041 00042 #endif
1.5.5