swad-core/swad_match_result.h

49 lines
1.9 KiB
C
Raw Permalink Normal View History

2019-09-28 02:31:42 +02:00
// swad_match_result.h: matches results in games using remote control
2020-04-02 03:28:08 +02:00
#ifndef _SWAD_MCH_RES
#define _SWAD_MCH_RES
2019-09-28 02:31:42 +02:00
/*
SWAD (Shared Workspace At a Distance in Spanish),
is a web platform developed at the University of Granada (Spain),
and used to support university teaching.
This file is part of SWAD core.
Copyright (C) 1999-2024 Antonio Ca<EFBFBD>as Vargas
2019-09-28 02:31:42 +02:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*****************************************************************************/
/************************** Public types and constants ***********************/
/*****************************************************************************/
2020-04-02 03:28:08 +02:00
#define MchRes_RESULTS_BOX_ID "mcr_box"
#define MchRes_RESULTS_TABLE_ID "mcr_table"
2019-12-08 14:14:29 +01:00
2019-09-28 02:31:42 +02:00
/*****************************************************************************/
/***************************** Public prototypes *****************************/
/*****************************************************************************/
2020-04-02 03:28:08 +02:00
void MchRes_ShowMyMchResultsInCrs (void);
void MchRes_ShowMyMchResultsInGam (void);
void MchRes_ShowMyMchResultsInMch (void);
2019-12-08 23:19:16 +01:00
2020-04-02 03:28:08 +02:00
void MchRes_ShowAllMchResultsInCrs (void);
2020-04-08 03:06:45 +02:00
void MchRes_SelUsrsToViewMchResults (void);
2020-04-02 03:28:08 +02:00
void MchRes_ShowAllMchResultsInGam (void);
void MchRes_ShowAllMchResultsInMch (void);
2019-12-08 13:34:12 +01:00
2020-04-02 03:28:08 +02:00
void MchRes_ShowOneMchResult (void);
2019-09-28 02:31:42 +02:00
#endif