swad-core/swad_exam_result.h

57 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-2023 Antonio Ca<EFBFBD>as Vargas
2020-04-20 01:26:46 +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/>.
*/
/*****************************************************************************/
/********************************* 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 *****************************/
/*****************************************************************************/
2020-05-18 02:38:51 +02:00
void ExaRes_ShowMyResultsInCrs (void);
void ExaRes_ShowMyResultsInExa (void);
void ExaRes_ShowMyResultsInSes (void);
void ExaRes_SelUsrsToViewResults (void);
void ExaRes_ShowAllResultsInCrs (void);
void ExaRes_ShowAllResultsInExa (void);
void ExaRes_ShowAllResultsInSes (void);
2020-04-20 01:26:46 +02:00
2021-01-27 19:37:16 +01:00
void ExaRes_ShowExaResultAfterFinish (void);
2020-04-20 01:26:46 +02:00
void ExaRes_ShowOneExaResult (void);
void ExaRes_ShowExamResultUser (struct Usr_Data *UsrDat);
2020-04-20 01:26:46 +02:00
#endif