mirror of https://github.com/acanas/swad-core.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
450 lines
17 KiB
C
450 lines
17 KiB
C
// swad_user.h: users
|
|
|
|
#ifndef _SWAD_USR
|
|
#define _SWAD_USR
|
|
/*
|
|
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ñ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 **********************************/
|
|
/*****************************************************************************/
|
|
|
|
#include <mysql/mysql.h> // To access MySQL databases
|
|
|
|
#include "swad_action.h"
|
|
#include "swad_constant.h"
|
|
#include "swad_country.h"
|
|
#include "swad_cryptography.h"
|
|
#include "swad_date.h"
|
|
#include "swad_degree.h"
|
|
#include "swad_icon.h"
|
|
#include "swad_layout.h"
|
|
#include "swad_menu.h"
|
|
#include "swad_nickname.h"
|
|
#include "swad_password.h"
|
|
#include "swad_photo_shape.h"
|
|
#include "swad_privacy_visibility_type.h"
|
|
#include "swad_role_type.h"
|
|
#include "swad_scope.h"
|
|
#include "swad_search.h"
|
|
#include "swad_setting.h"
|
|
#include "swad_string.h"
|
|
#include "swad_theme.h"
|
|
|
|
/*****************************************************************************/
|
|
/****************************** Public constants *****************************/
|
|
/*****************************************************************************/
|
|
|
|
#define Usr_MIN_MONTHS_WITHOUT_ACCESS_TO_REMOVE_OLD_USRS 6
|
|
#define Usr_DEF_MONTHS_WITHOUT_ACCESS_TO_REMOVE_OLD_USRS 12
|
|
#define Usr_MAX_MONTHS_WITHOUT_ACCESS_TO_REMOVE_OLD_USRS 60
|
|
|
|
#define Usr_MAX_CHARS_FIRSTNAME_OR_SURNAME (32 - 1) // 31
|
|
#define Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME ((Usr_MAX_CHARS_FIRSTNAME_OR_SURNAME + 1) * Str_MAX_BYTES_PER_CHAR - 1) // 511
|
|
|
|
#define Usr_MAX_BYTES_SURNAMES (Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1 + Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME)
|
|
// Surname1 +' '+ Surname2
|
|
#define Usr_MAX_BYTES_FULL_NAME (Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1 + Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 6 + Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME)
|
|
// Surname1 +' '+ Surname2 + ','+' ' + FirstName
|
|
// Surname1 +' '+ Surname2 + '<br />' + FirstName
|
|
|
|
#define Usr_BIRTHDAY_STR_DB_LENGTH (1 + 4 + 1 + 2 + 1 + 2 + 1) // "'%04u-%02u-%02u'"
|
|
|
|
#define Usr_MAX_CHARS_ADDRESS (128 - 1) // 127
|
|
#define Usr_MAX_BYTES_ADDRESS ((Usr_MAX_CHARS_ADDRESS + 1) * Str_MAX_BYTES_PER_CHAR - 1) // 2047
|
|
|
|
#define Usr_MAX_CHARS_PHONE 16
|
|
#define Usr_MAX_BYTES_PHONE Usr_MAX_CHARS_PHONE
|
|
|
|
#define Usr_CLASS_PHOTO_COLS_DEF 10 // Default number of columns in a class photo
|
|
#define Usr_CLASS_PHOTO_COLS_MAX 100 // Maximum number of columns in a class photo
|
|
|
|
#define Usr_LIST_WITH_PHOTOS_DEF true
|
|
|
|
#define Usr_MAX_BYTES_LIST_ENCRYPTED_USR_CODS (Cry_BYTES_ENCRYPTED_STR_SHA256_BASE64 * Cfg_MAX_USRS_IN_LIST)
|
|
|
|
#define Usr_NUM_MAIN_FIELDS_DATA_USR 8
|
|
|
|
#define Usr_USER_LIST_SECTION_ID "user_list"
|
|
|
|
/*****************************************************************************/
|
|
/******************************** Public types *******************************/
|
|
/*****************************************************************************/
|
|
|
|
// Get user's data with or without personal settings
|
|
typedef enum
|
|
{
|
|
Usr_DONT_GET_PREFS = 0,
|
|
Usr_GET_PREFS = 1,
|
|
} Usr_GetPrefs_t;
|
|
|
|
typedef enum
|
|
{
|
|
Usr_DONT_GET_ROLE_IN_CURRENT_CRS = 0,
|
|
Usr_GET_ROLE_IN_CURRENT_CRS = 1,
|
|
} Usr_GetRoleInCurrentCrs_t;
|
|
|
|
|
|
// Related with user's sexs
|
|
#define Usr_NUM_SEXS 4 // Unknown, female, male, all
|
|
typedef enum
|
|
{
|
|
Usr_SEX_UNKNOWN = 0,
|
|
Usr_SEX_FEMALE = 1,
|
|
Usr_SEX_MALE = 2,
|
|
Usr_SEX_ALL = 3, // Usr_SEX_ALL is intended for "all sexs"
|
|
} Usr_Sex_t;
|
|
// Don't change these numbers! They are used for user's sex in database
|
|
|
|
// Related with class photograph
|
|
#define Usr_NUM_CLASS_PHOTO_TYPE 3
|
|
typedef enum
|
|
{
|
|
Usr_CLASS_PHOTO_SEL, // Only for selection of users
|
|
Usr_CLASS_PHOTO_SEL_SEE, // Selecting and seeing users
|
|
Usr_CLASS_PHOTO_PRN, // Only print users
|
|
} Usr_ClassPhotoType_t;
|
|
|
|
#define Usr_LIST_USRS_NUM_OPTIONS 8
|
|
typedef enum
|
|
{
|
|
Usr_OPTION_UNKNOWN = 0,
|
|
Usr_OPTION_RECORDS = 1,
|
|
Usr_OPTION_HOMEWORK = 2,
|
|
Usr_OPTION_ATTENDANCE = 3,
|
|
Usr_OPTION_MESSAGE = 4,
|
|
Usr_OPTION_EMAIL = 5,
|
|
Usr_OPTION_FOLLOW = 6,
|
|
Usr_OPTION_UNFOLLOW = 7,
|
|
} Usr_ListUsrsOption_t;
|
|
#define Usr_LIST_USRS_DEFAULT_OPTION Usr_OPTION_RECORDS
|
|
|
|
#define Usr_NUM_ME_OR_OTHER 2
|
|
typedef enum
|
|
{
|
|
Usr_ME,
|
|
Usr_OTHER,
|
|
} Usr_MeOrOther_t;
|
|
|
|
#define Usr_NUM_WHO 5
|
|
typedef enum
|
|
{
|
|
Usr_WHO_UNKNOWN,
|
|
Usr_WHO_ME,
|
|
Usr_WHO_SELECTED,
|
|
Usr_WHO_FOLLOWED,
|
|
Usr_WHO_ALL,
|
|
} Usr_Who_t;
|
|
#define Usr_WHO_DEFAULT Usr_WHO_ALL
|
|
|
|
// Related with user's data
|
|
struct Usr_Data
|
|
{
|
|
long UsrCod;
|
|
char EnUsrCod [Cry_BYTES_ENCRYPTED_STR_SHA256_BASE64 + 1];
|
|
char UsrIDNickOrEmail[Cns_MAX_BYTES_USR_LOGIN + 1]; // String to store the ID, nickname or email
|
|
struct
|
|
{
|
|
struct ListIDs *List;
|
|
unsigned Num;
|
|
} IDs;
|
|
char Nickname [Nck_MAX_BYTES_NICK_WITHOUT_ARROBA + 1];
|
|
char Password [Pwd_BYTES_ENCRYPTED_PASSWORD + 1];
|
|
struct
|
|
{
|
|
Rol_Role_t InCurrentCrs; // Role in current course (Rol_UNK is not filled/calculated or no course selected)
|
|
int InCrss; // Roles in all his/her courses
|
|
// Check always if filled/calculated
|
|
// >=0 ==> filled/calculated
|
|
// <0 ==> not yet filled/calculated
|
|
} Roles;
|
|
bool Accepted; // User has accepted joining to current course?
|
|
char Surname1 [Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1];
|
|
char Surname2 [Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1];
|
|
char FrstName [Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1];
|
|
char FullName [Usr_MAX_BYTES_FULL_NAME + 1];
|
|
Usr_Sex_t Sex;
|
|
char Email [Cns_MAX_BYTES_EMAIL_ADDRESS + 1];
|
|
bool EmailConfirmed;
|
|
char Photo [Cry_BYTES_ENCRYPTED_STR_SHA256_BASE64 + 1]; // Name of public link to photo
|
|
Pri_Visibility_t PhotoVisibility; // Who can see user's photo
|
|
Pri_Visibility_t BaPrfVisibility; // Who can see user's basic public profile (minimal record card)
|
|
Pri_Visibility_t ExPrfVisibility; // Who can see user's extended public profile (figures, follow)
|
|
long CtyCod; // Country
|
|
struct Dat_Date Birthday;
|
|
char StrBirthday [Cns_MAX_BYTES_DATE + 1];
|
|
char Phone [2][Usr_MAX_BYTES_PHONE + 1];
|
|
char *Comments;
|
|
long InsCtyCod; // Country of the institution
|
|
long InsCod; // Institution
|
|
struct
|
|
{
|
|
long CtrCod; // Center
|
|
long DptCod; // Department
|
|
char Office [Usr_MAX_BYTES_ADDRESS + 1];
|
|
char OfficePhone [Usr_MAX_BYTES_PHONE + 1];
|
|
} Tch;
|
|
struct
|
|
{
|
|
unsigned CreateNotif; // One bit activated for each type of event
|
|
unsigned SendEmail; // One bit activated for each type of event
|
|
} NtfEvents;
|
|
struct
|
|
{
|
|
Lan_Language_t Language;
|
|
unsigned FirstDayOfWeek;
|
|
Dat_Format_t DateFormat;
|
|
The_Theme_t Theme;
|
|
Ico_IconSet_t IconSet;
|
|
Mnu_Menu_t Menu;
|
|
unsigned SideCols;
|
|
PhoSha_Shape_t PhotoShape;
|
|
bool AcceptCookies; // User has accepted third party cookies
|
|
} Prefs;
|
|
};
|
|
|
|
struct Usr_Last
|
|
{
|
|
Sch_WhatToSearch_t WhatToSearch; // Search courses, teachers, documents...?
|
|
struct
|
|
{
|
|
HieLvl_Level_t Scope; // Course, degree, center, etc.
|
|
long Cod; // Course code, degree code, center code, etc.
|
|
} LastHie;
|
|
Act_Action_t LastAct;
|
|
Rol_Role_t LastRole;
|
|
long LastTime;
|
|
long LastAccNotif;
|
|
};
|
|
|
|
struct Usr_InList
|
|
{
|
|
long UsrCod;
|
|
char EnUsrCod[Cry_BYTES_ENCRYPTED_STR_SHA256_BASE64 + 1];
|
|
char Password[Pwd_BYTES_ENCRYPTED_PASSWORD + 1];
|
|
char Surname1 [Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1];
|
|
char Surname2 [Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1];
|
|
char FrstName[Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1];
|
|
Usr_Sex_t Sex;
|
|
char Photo[Cry_BYTES_ENCRYPTED_STR_SHA256_BASE64 + 1]; // Name of public link to photo
|
|
Pri_Visibility_t PhotoVisibility; // Who can see user's photo
|
|
long CtyCod; // Country
|
|
long InsCod; // Institution
|
|
Rol_Role_t RoleInCurrentCrsDB; // Role in current course in database
|
|
bool Accepted; // User has accepted joining to one/all courses?
|
|
bool Remove; // A boolean associated with each user that indicates if it must be removed
|
|
};
|
|
|
|
struct Usr_ListUsrs
|
|
{
|
|
struct Usr_InList *Lst; // List of users
|
|
unsigned NumUsrs; // Number of users in the list
|
|
};
|
|
|
|
struct Usr_SelectedUsrs
|
|
{
|
|
char *List[Rol_NUM_ROLES]; // Lists of encrypted codes of users selected from a form
|
|
bool Filled; // If lists are already filled/readed
|
|
char *ParSuffix;
|
|
Usr_ListUsrsOption_t Option; // What option I have selected to do with these selected users
|
|
};
|
|
|
|
struct Usr_ListUsrCods
|
|
{
|
|
long *Lst; // List of users' codes
|
|
unsigned NumUsrs; // Number of users in the list
|
|
};
|
|
|
|
/*****************************************************************************/
|
|
/****************************** Public prototypes ****************************/
|
|
/*****************************************************************************/
|
|
|
|
void Usr_InformAboutNumClicksBeforePhoto (void);
|
|
|
|
void Usr_UsrDataConstructor (struct Usr_Data *UsrDat);
|
|
void Usr_ResetUsrDataExceptUsrCodAndIDs (struct Usr_Data *UsrDat);
|
|
void Usr_ResetMyLastData (void);
|
|
void Usr_UsrDataDestructor (struct Usr_Data *UsrDat);
|
|
void Usr_GetAllUsrDataFromUsrCod (struct Usr_Data *UsrDat,
|
|
Usr_GetPrefs_t GetPrefs,
|
|
Usr_GetRoleInCurrentCrs_t GetRoleInCurrentCrs);
|
|
void Usr_AllocateListUsrCods (struct Usr_ListUsrCods *ListUsrCods);
|
|
void Usr_FreeListUsrCods (struct Usr_ListUsrCods *ListUsrCods);
|
|
Usr_MeOrOther_t Usr_ItsMe (long UsrCod);
|
|
void Usr_GetUsrCodFromEncryptedUsrCod (struct Usr_Data *UsrDat);
|
|
void Usr_GetUsrDataFromUsrCod (struct Usr_Data *UsrDat,
|
|
Usr_GetPrefs_t GetPrefs,
|
|
Usr_GetRoleInCurrentCrs_t GetRoleInCurrentCrs);
|
|
|
|
void Usr_BuildFullName (struct Usr_Data *UsrDat);
|
|
|
|
void Usr_WriteFirstNameBRSurnames (const struct Usr_Data *UsrDat);
|
|
|
|
void Usr_FlushCachesUsr (void);
|
|
|
|
void Usr_FlushCacheUsrIsSuperuser (void);
|
|
bool Usr_CheckIfUsrIsSuperuser (long UsrCod);
|
|
|
|
bool Usr_ICanChangeOtherUsrData (const struct Usr_Data *UsrDat);
|
|
bool Usr_ICanEditOtherUsr (const struct Usr_Data *UsrDat);
|
|
|
|
bool Usr_CheckIfICanViewRecordStd (const struct Usr_Data *UsrDat);
|
|
bool Usr_CheckIfICanViewRecordTch (struct Usr_Data *UsrDat);
|
|
bool Usr_CheckIfICanViewTstExaMchResult (const struct Usr_Data *UsrDat);
|
|
bool Usr_CheckIfICanViewAsgWrk (const struct Usr_Data *UsrDat);
|
|
bool Usr_CheckIfICanViewAtt (const struct Usr_Data *UsrDat);
|
|
bool Usr_CheckIfICanViewUsrAgenda (struct Usr_Data *UsrDat);
|
|
|
|
void Usr_WriteLandingPage (void);
|
|
void Usr_WriteFormLogout (void);
|
|
void Usr_Logout (void);
|
|
void Usr_PutLinkToLogin (void);
|
|
void Usr_WriteFormLogin (Act_Action_t NextAction,void (*FuncPars) (void));
|
|
void Usr_WelcomeUsr (void);
|
|
|
|
void Usr_CreateBirthdayStrDB (const struct Usr_Data *UsrDat,
|
|
char BirthdayStrDB[Usr_BIRTHDAY_STR_DB_LENGTH + 1]);
|
|
void Usr_FilterUsrBirthday (struct Dat_Date *Birthday);
|
|
|
|
void Usr_PutFormLogIn (void);
|
|
void Usr_WriteLoggedUsrHead (void);
|
|
void Usr_PutFormLogOut (void);
|
|
void Usr_GetParUsrIdLogin (void);
|
|
unsigned Usr_GetParOtherUsrIDNickOrEMailAndGetUsrCods (struct Usr_ListUsrCods *ListUsrCods);
|
|
|
|
void Usr_PutParMyUsrCodEncrypted (void *EncryptedUsrCod);
|
|
void Usr_PutParOtherUsrCodEncrypted (void *EncryptedUsrCod);
|
|
void Usr_PutParUsrCodEncrypted (const char EncryptedUsrCod[Cry_BYTES_ENCRYPTED_STR_SHA256_BASE64 + 1]);
|
|
void Usr_GetParOtherUsrCodEncrypted (struct Usr_Data *UsrDat);
|
|
void Usr_GetParOtherUsrCodEncryptedAndGetListIDs (void);
|
|
bool Usr_GetParOtherUsrCodEncryptedAndGetUsrData (void);
|
|
|
|
void Usr_ChkUsrAndGetUsrData (void);
|
|
|
|
void Usr_ShowFormsLogoutAndRole (void);
|
|
|
|
bool Usr_ChkUsrCodAndGetAllUsrDataFromUsrCod (struct Usr_Data *UsrDat,
|
|
Usr_GetPrefs_t GetPrefs,
|
|
Usr_GetRoleInCurrentCrs_t GetRoleInCurrentCrs);
|
|
void Usr_UpdateMyLastData (void);
|
|
void Usr_InsertMyLastCrsTabAndTime (void);
|
|
|
|
void Usr_WriteRowUsrMainData (unsigned NumUsr,struct Usr_Data *UsrDat,
|
|
bool PutCheckBoxToSelectUsr,Rol_Role_t Role,
|
|
struct Usr_SelectedUsrs *SelectedUsrs);
|
|
|
|
void Usr_GetListUsrs (HieLvl_Level_t Scope,Rol_Role_t Role);
|
|
|
|
void Usr_SearchListUsrs (Rol_Role_t Role);
|
|
|
|
void Usr_GetUnorderedStdsCodesInDeg (long DegCod);
|
|
|
|
void Usr_GetListUsrsFromQuery (char *Query,Rol_Role_t Role,HieLvl_Level_t Scope);
|
|
|
|
void Usr_CopyBasicUsrDataFromList (struct Usr_Data *UsrDat,
|
|
const struct Usr_InList *UsrInList);
|
|
void Usr_FreeUsrsList (Rol_Role_t Role);
|
|
|
|
bool Usr_GetIfShowBigList (unsigned NumUsrs,
|
|
void (*FuncPars) (void *Args),void *Args,
|
|
const char *OnSubmit);
|
|
|
|
void Usr_CreateListSelectedUsrsCodsAndFillWithOtherUsr (struct Usr_SelectedUsrs *SelectedUsrs);
|
|
void Usr_PutParSelectedUsrsCods (struct Usr_SelectedUsrs *SelectedUsrs);
|
|
void Usr_GetListsSelectedEncryptedUsrsCods (struct Usr_SelectedUsrs *SelectedUsrs);
|
|
|
|
bool Usr_GetListMsgRecipientsWrittenExplicitelyBySender (bool WriteErrorMsgs);
|
|
|
|
bool Usr_FindEncryptedUsrCodInListOfSelectedEncryptedUsrCods (const char *EncryptedUsrCodToFind,
|
|
struct Usr_SelectedUsrs *SelectedUsrs);
|
|
bool Usr_CheckIfThereAreUsrsInListOfSelectedEncryptedUsrCods (struct Usr_SelectedUsrs *SelectedUsrs);
|
|
unsigned Usr_CountNumUsrsInListOfSelectedEncryptedUsrCods (struct Usr_SelectedUsrs *SelectedUsrs);
|
|
void Usr_FreeListsSelectedEncryptedUsrsCods (struct Usr_SelectedUsrs *SelectedUsrs);
|
|
|
|
void Usr_GetListSelectedUsrCods (struct Usr_SelectedUsrs *SelectedUsrs,
|
|
unsigned NumUsrsInList,
|
|
long **LstSelectedUsrCods);
|
|
void Usr_FreeListSelectedUsrCods (long *LstSelectedUsrCods);
|
|
|
|
void Usr_CreateSubqueryUsrCods (long LstSelectedUsrCods[],
|
|
unsigned NumUsrsInList,
|
|
char **SubQueryUsrs);
|
|
void Usr_FreeSubqueryUsrCods (char *SubQueryUsrs);
|
|
|
|
void Usr_FreeListOtherRecipients (void);
|
|
|
|
void Usr_ShowFormsToSelectUsrListType (void (*FuncPars) (void *Args),void *Args);
|
|
unsigned Usr_GetColumnsForSelectUsrs (void);
|
|
void Usr_SetUsrDatMainFieldNames (void);
|
|
void Usr_WriteHeaderFieldsUsrDat (bool PutCheckBoxToSelectUsr);
|
|
|
|
void Usr_PutFormToSelectUsrsToGoToAct (struct Usr_SelectedUsrs *SelectedUsrs,
|
|
Act_Action_t NextAction,
|
|
void (*FuncPars) (void *Args),void *Args,
|
|
const char *Title,
|
|
const char *HelpLink,
|
|
const char *TxtButton,
|
|
bool PutFormDateRange);
|
|
void Usr_GetSelectedUsrsAndGoToAct (struct Usr_SelectedUsrs *SelectedUsrs,
|
|
void (*FuncWhenUsrsSelected) (void *ArgsSelected),void *ArgsSelected,
|
|
void (*FuncWhenNoUsrsSelected) (void *ArgsNoSelected),void *ArgsNoSelected);
|
|
void Usr_ListUsersToSelect (Rol_Role_t Role,struct Usr_SelectedUsrs *SelectedUsrs);
|
|
|
|
void Usr_ListAllDataGsts (void);
|
|
void Usr_ListAllDataStds (void);
|
|
void Usr_ListAllDataTchs (void);
|
|
unsigned Usr_ListUsrsFound (Rol_Role_t Role,
|
|
const char SearchQuery[Sch_MAX_BYTES_SEARCH_QUERY + 1]);
|
|
void Usr_ListDataAdms (void);
|
|
|
|
void Usr_SeeGuests (void);
|
|
void Usr_SeeStudents (void);
|
|
void Usr_SeeTeachers (void);
|
|
|
|
void Usr_DoActionOnSeveralUsrs1 (void);
|
|
void Usr_DoActionOnSeveralUsrs2 (void);
|
|
|
|
void Usr_SeeGstClassPhotoPrn (void);
|
|
void Usr_SeeStdClassPhotoPrn (void);
|
|
void Usr_SeeTchClassPhotoPrn (void);
|
|
void Usr_PutSelectorNumColsClassPhoto (void);
|
|
|
|
void Usr_ConstructPathUsr (long UsrCod,char PathUsr[PATH_MAX + 1]);
|
|
|
|
void Usr_ShowWarningNoUsersFound (Rol_Role_t Role);
|
|
|
|
unsigned Usr_GetTotalNumberOfUsers (void);
|
|
|
|
void Usr_WriteAuthor (struct Usr_Data *UsrDat,Cns_Enabled_t Enabled);
|
|
void Usr_WriteAuthor1Line (long UsrCod,bool Hidden);
|
|
|
|
void Usr_ShowTableCellWithUsrData (struct Usr_Data *UsrDat,unsigned NumRows);
|
|
|
|
void Usr_PutWhoIcon (Usr_Who_t Who);
|
|
void Usr_PutParWho (Usr_Who_t Who);
|
|
Usr_Who_t Usr_GetParWho (void);
|
|
|
|
//-------------------------------- Figures ------------------------------------
|
|
void Usr_GetAndShowUsersStats (void);
|
|
void Usr_GetAndShowUsersRanking (void);
|
|
|
|
#endif
|