00001 // This file is part of BOINC. 00002 // http://boinc.berkeley.edu 00003 // Copyright (C) 2008 University of California 00004 // 00005 // BOINC is free software; you can redistribute it and/or modify it 00006 // under the terms of the GNU Lesser General Public License 00007 // as published by the Free Software Foundation, 00008 // either version 3 of the License, or (at your option) any later version. 00009 // 00010 // BOINC is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00013 // See the GNU Lesser General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU Lesser General Public License 00016 // along with BOINC. If not, see <http://www.gnu.org/licenses/>. 00017 00018 #define MAX_TABS 5 00019 #define MAX_USAGE_STR 6 00020 #define MAX_MISC_STR 16 00021 #define MAX_LIST_ID 4 // for column titles 00022 #define MAX_COLS 8 00023 00024 extern char g_szTabItems[MAX_TABS][256]; 00025 extern char g_szColumnTitles[MAX_LIST_ID][MAX_COLS][256]; 00026 extern char g_szUsageItems[MAX_USAGE_STR][256]; 00027 extern char g_szMiscItems[MAX_MISC_STR][256]; 00028 extern int g_nColSortTypes[MAX_LIST_ID][MAX_COLS];
1.5.6