2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2003-10-02 21:16:37 +00:00
|
|
|
#include "boinc_api.h"
|
2004-12-10 21:06:42 +00:00
|
|
|
#include "graphics_impl.h"
|
2003-10-02 21:16:37 +00:00
|
|
|
#include "graphics_api.h"
|
2004-07-15 21:54:48 +00:00
|
|
|
|
2004-12-13 18:55:42 +00:00
|
|
|
static BOINC_MAIN_STATE boinc_main_state;
|
|
|
|
|
|
|
|
static void init_main_state() {
|
|
|
|
boinc_main_state.boinc_init_options_general_hook = boinc_init_options_general;
|
|
|
|
boinc_main_state.boinc_is_standalone_hook = boinc_is_standalone;
|
2004-12-13 19:03:10 +00:00
|
|
|
boinc_main_state.boinc_get_init_data_hook = boinc_get_init_data;
|
2004-12-13 19:09:15 +00:00
|
|
|
boinc_main_state.set_worker_timer_hook = set_worker_timer;
|
2004-12-19 07:53:02 +00:00
|
|
|
boinc_main_state.app_client_shmp = &app_client_shm;
|
2004-12-13 18:55:42 +00:00
|
|
|
}
|
|
|
|
|
2004-10-26 21:12:00 +00:00
|
|
|
int boinc_init_graphics(void (*worker)()) {
|
2004-12-13 18:55:42 +00:00
|
|
|
init_main_state();
|
|
|
|
return boinc_init_graphics_impl(worker, &boinc_main_state);
|
2004-10-26 21:12:00 +00:00
|
|
|
}
|
|
|
|
|
2004-12-10 21:06:42 +00:00
|
|
|
int boinc_init_options_graphics(BOINC_OPTIONS& opt, void (*worker)()) {
|
2004-12-13 18:55:42 +00:00
|
|
|
init_main_state();
|
|
|
|
return boinc_init_options_graphics_impl(opt, worker, &boinc_main_state);
|
2004-10-16 20:20:37 +00:00
|
|
|
}
|
2004-12-16 03:28:40 +00:00
|
|
|
|
2005-01-02 18:29:53 +00:00
|
|
|
const char *BOINC_RCSID_b2ceed0813 = "$Id$";
|