swad-core/swad_exam_result.h

55 lines
2.2 KiB
C
Raw Normal View History

2020-04-20 01:26:46 +02:00
// swad_exam_result.h: exams results
#ifndef _SWAD_EXA_RES
#define _SWAD_EXA_RES
/*
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-2020 Antonio Ca<EFBFBD>as Vargas
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/>.
*/
/*****************************************************************************/
/********************************* Headers ***********************************/
/*****************************************************************************/
2020-05-07 18:33:26 +02:00
#include "swad_test_print.h"
2020-04-20 01:26:46 +02:00
/*****************************************************************************/
/************************** Public types and constants ***********************/
/*****************************************************************************/
#define ExaRes_RESULTS_BOX_ID "exares_box"
#define ExaRes_RESULTS_TABLE_ID "exares_table"
/*****************************************************************************/
/***************************** Public prototypes *****************************/
/*****************************************************************************/
void ExaRes_ShowMyExaResultsInCrs (void);
void ExaRes_ShowMyExaResultsInExa (void);
2020-05-17 20:12:37 +02:00
void ExaRes_ShowMyExaResultsInSes (void);
2020-04-20 01:26:46 +02:00
void ExaRes_ShowAllExaResultsInCrs (void);
void ExaRes_SelUsrsToViewExaResults (void);
void ExaRes_ShowAllExaResultsInExa (void);
2020-05-17 20:12:37 +02:00
void ExaRes_ShowAllExaResultsInSes (void);
2020-04-20 01:26:46 +02:00
void ExaRes_ShowOneExaResult (void);
#endif