boinc/client/app_config.h

54 lines
1.3 KiB
C++

// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2012 University of California
//
// BOINC 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 3 of the License, or (at your option) any later version.
//
// BOINC 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.
//
// You should have received a copy of the GNU Lesser General Public License
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
#ifndef _APP_CONFIG_
#define _APP_CONFIG_
#include <vector>
#include "parse.h"
#include "client_types.h"
struct PROJECT;
struct RESULT;
struct APP_CONFIG {
char name[256];
int max_concurrent;
double gpu_gpu_usage;
double gpu_cpu_usage;
int parse(XML_PARSER&);
};
struct APP_CONFIGS {
std::vector<APP_CONFIG> app_configs;
int parse(XML_PARSER&);
int parse_file(FILE*);
void config_app_versions(PROJECT*);
};
extern bool have_max_concurrent;
extern void max_concurrent_init();
extern void check_app_config();
#endif