/* * cms.h * * Copyright 2022 Jonathan Schöbel <jonathan@Ubermos-2019> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. * * */ #ifndef SEFHT_CMS_H #define SEFHT_CMS_H #if !defined (SEFHT_SEFHT_H_INSIDE) && !defined (SEFHT_COMPILATION) #error "Only <sefht/sefht.h> can be included directly." #endif #include "status.h" #include "data.h" typedef /*@abstract@*/ struct SH_Cms SH_Cms; /*@null@*/ /*@only@*/ SH_Cms * SH_Cms_new (/*@null@*/ /*@out@*/ struct SH_Status * status) /*@globals fileSystem@*/ /*@modifies fileSystem@*/ /*@modifies status@*/; void SH_Cms_free (/*@only@*/ SH_Cms * cms) /*@modifies cms@*/ /*@releases cms@*/; page_t SH_Cms_register_page (struct SH_Cms * cms, const char * name, struct SH_Status * status) /*@modifies cms@*/ /*@globals fileSystem@*/ /*@modifies fileSystem@*/ /*@modifies status@*/; #endif /* SEFHT_CMS_H */