From d2eb55caf1314b38a868f2eb508db3dc8dce0151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ca=C3=B1as=20Vargas?= Date: Thu, 7 Jul 2016 00:21:10 +0200 Subject: [PATCH] Version 15.242 --- swad_agenda.c | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++ swad_agenda.h | 48 ++++++++++++++++++++++++++++++++++ 2 files changed, 119 insertions(+) create mode 100644 swad_agenda.c create mode 100644 swad_agenda.h diff --git a/swad_agenda.c b/swad_agenda.c new file mode 100644 index 000000000..0d25e11b9 --- /dev/null +++ b/swad_agenda.c @@ -0,0 +1,71 @@ +// swad_agenda.c: user's agenda (personal organizer) + +/* + SWAD (Shared Workspace At a Distance), + 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-2016 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 3 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 . +*/ +/*****************************************************************************/ +/*********************************** Headers *********************************/ +/*****************************************************************************/ + +// #include // For boolean type +// #include // For sprintf +// #include // For string functions + +// #include "swad_database.h" +// #include "swad_follow.h" +// #include "swad_global.h" +// #include "swad_notification.h" +// #include "swad_profile.h" +// #include "swad_user.h" + +/*****************************************************************************/ +/****************************** Public constants *****************************/ +/*****************************************************************************/ + +/*****************************************************************************/ +/***************************** Private constants *****************************/ +/*****************************************************************************/ + +/*****************************************************************************/ +/****************************** Internal types *******************************/ +/*****************************************************************************/ + +/*****************************************************************************/ +/************** External global variables from others modules ****************/ +/*****************************************************************************/ + +// extern struct Globals Gbl; + +/*****************************************************************************/ +/************************* Internal global variables *************************/ +/*****************************************************************************/ + +/*****************************************************************************/ +/***************************** Private prototypes ****************************/ +/*****************************************************************************/ + +/*****************************************************************************/ +/******************** Show my agenda (personal organizer) ********************/ +/*****************************************************************************/ + +void Agd_ShowMyAgenda (void) + { + } diff --git a/swad_agenda.h b/swad_agenda.h new file mode 100644 index 000000000..393b0b325 --- /dev/null +++ b/swad_agenda.h @@ -0,0 +1,48 @@ +// swad_agenda.h: user's agenda (personal organizer) + +#ifndef _SWAD_AGD +#define _SWAD_AGD +/* + 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-2016 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 . +*/ +/*****************************************************************************/ +/********************************** Headers **********************************/ +/*****************************************************************************/ + +// #include // For malloc + +// #include "swad_user.h" + +/*****************************************************************************/ +/****************************** Public constants *****************************/ +/*****************************************************************************/ + +/*****************************************************************************/ +/******************************** Public types *******************************/ +/*****************************************************************************/ + +/*****************************************************************************/ +/****************************** Public prototypes ****************************/ +/*****************************************************************************/ + +void Agd_ShowMyAgenda (void); + +#endif