Mercurial > noffle
comparison src/post.h @ 115:3b4db42990e0 noffle
[svn] Approved: header, group check before post, all external servers.
author | bears |
---|---|
date | Sat, 24 Jun 2000 21:47:40 +0100 |
parents | 1fcdced0246e |
children | 1c7303c71f66 |
comparison
equal
deleted
inserted
replaced
114:af7bea7515b2 | 115:3b4db42990e0 |
---|---|
3 | 3 |
4 Take the text of a single article, parse it and add/amend headers as | 4 Take the text of a single article, parse it and add/amend headers as |
5 necessary, and add to the local database and/or queue for external | 5 necessary, and add to the local database and/or queue for external |
6 posting as appropriate. | 6 posting as appropriate. |
7 | 7 |
8 $Id: post.h 100 2000-05-18 12:17:23Z bears $ | 8 $Id: post.h 159 2000-06-24 20:47:40Z bears $ |
9 */ | 9 */ |
10 | 10 |
11 #ifndef POST_H | 11 #ifndef POST_H |
12 #define POST_H | 12 #define POST_H |
13 | 13 |
19 | 19 |
20 /* Register an article for posting. */ | 20 /* Register an article for posting. */ |
21 Bool | 21 Bool |
22 Post_open( const char * text ); | 22 Post_open( const char * text ); |
23 | 23 |
24 /* | 24 /* Post the article. */ |
25 Post the article. If localOnly, article is only posted to local | |
26 groups, and is posted regardless of group posting status. | |
27 */ | |
28 Bool | 25 Bool |
29 Post_post( Bool localOnly ); | 26 Post_post( void ); |
30 | 27 |
31 /* Done with article - tidy up. */ | 28 /* Done with article - tidy up. */ |
32 void | 29 void |
33 Post_close( void ); | 30 Post_close( void ); |
34 | 31 |