/[LeafOK_CVS]/lbbs/src/article_post.c
ViewVC logotype

Annotation of /lbbs/src/article_post.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations)
Thu Jun 12 12:14:28 2025 UTC (9 months ago) by sysadm
Branch: MAIN
Content type: text/x-csrc
Add framework of article_post

1 sysadm 1.1 /***************************************************************************
2     article_post.c - description
3     -------------------
4     copyright : (C) 2004-2025 by Leaflet
5     email : leaflet@leafok.com
6     ***************************************************************************/
7    
8     /***************************************************************************
9     * *
10     * This program is free software; you can redistribute it and/or modify *
11     * it under the terms of the GNU General Public License as published by *
12     * the Free Software Foundation; either version 3 of the License, or *
13     * (at your option) any later version. *
14     * *
15     ***************************************************************************/
16    
17     #include "article_post.h"
18     #include "article_cache.h"
19     #include "editor.h"
20     #include "screen.h"
21     #include "log.h"
22    
23     int article_post(SECTION_LIST *p_section, ARTICLE *p_article, ARTICLE_POST_TYPE type)
24     {
25     log_common("Debug: sid=%d aid=%d type=%d\n",
26     p_section->sid, (p_article == NULL ? 0 : p_article->aid), type);
27    
28     return 0;
29     }

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1