2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2002-11-04 18:57:47 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation;
|
|
|
|
// either version 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This software 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 Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
|
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2002-11-04 18:57:47 +00:00
|
|
|
|
2002-10-06 01:14:37 +00:00
|
|
|
#ifndef __WINGUI_H_
|
|
|
|
#define __WINGUI_H_
|
|
|
|
|
2002-12-11 23:10:51 +00:00
|
|
|
#include "file_names.h"
|
2002-11-04 18:57:47 +00:00
|
|
|
#include "filesys.h"
|
2002-10-06 01:14:37 +00:00
|
|
|
#include "log_flags.h"
|
|
|
|
#include "client_state.h"
|
2003-02-04 21:47:12 +00:00
|
|
|
#include "error_numbers.h"
|
2004-03-04 05:08:04 +00:00
|
|
|
#include "boinc_gui.h"
|
2002-12-18 20:24:56 +00:00
|
|
|
#include "util.h"
|
2002-10-06 01:14:37 +00:00
|
|
|
#include "win_net.h"
|
2002-12-18 20:24:56 +00:00
|
|
|
#include "win_util.h"
|
2002-10-06 01:14:37 +00:00
|
|
|
|
2002-12-18 20:24:56 +00:00
|
|
|
// functions
|
2002-10-06 01:14:37 +00:00
|
|
|
|
2002-12-19 22:43:38 +00:00
|
|
|
int add_new_project();
|
2002-12-18 20:24:56 +00:00
|
|
|
BOOL RequestNetConnect();
|
2002-11-04 18:57:47 +00:00
|
|
|
|
2003-07-31 23:11:53 +00:00
|
|
|
|
|
|
|
void GetLanguageFilename(CString& path);
|
|
|
|
void UpdateLanguageStrings(CWnd* wnd, char const * windowname, int const* pnIDs, CString * const * pStrs = NULL);
|
|
|
|
|
2002-12-19 22:43:38 +00:00
|
|
|
#endif
|