|
|
1.1 root 1: /* semfile.h */
2:
3: /* Semaphore file functions */
4:
5: /* $Id: semfile.h,v 1.1 2006/03/14 09:29:42 rswindell Exp $ */
6:
7: /****************************************************************************
8: * @format.tab-size 4 (Plain Text/Source Code File Header) *
9: * @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
10: * *
11: * Copyright 2006 Rob Swindell - http://www.synchro.net/copyright.html *
12: * *
13: * This library is free software; you can redistribute it and/or *
14: * modify it under the terms of the GNU Lesser General Public License *
15: * as published by the Free Software Foundation; either version 2 *
16: * of the License, or (at your option) any later version. *
17: * See the GNU Lesser General Public License for more details: lgpl.txt or *
18: * http://www.fsf.org/copyleft/lesser.html *
19: * *
20: * Anonymous FTP access to the most recent released source is available at *
21: * ftp://vert.synchro.net, ftp://cvs.synchro.net and ftp://ftp.synchro.net *
22: * *
23: * Anonymous CVS access to the development source and modification history *
24: * is available at cvs.synchro.net:/cvsroot/sbbs, example: *
25: * cvs -d :pserver:[email protected]:/cvsroot/sbbs login *
26: * (just hit return, no password is necessary) *
27: * cvs -d :pserver:[email protected]:/cvsroot/sbbs checkout src *
28: * *
29: * For Synchronet coding style and modification guidelines, see *
30: * http://www.synchro.net/source.html *
31: * *
32: * You are encouraged to submit any modifications (preferably in Unix diff *
33: * format) via e-mail to [email protected] *
34: * *
35: * Note: If this box doesn't appear square, then you need to fix your tabs. *
36: ****************************************************************************/
37:
38: #ifndef _SEMFILE_H
39: #define _SEMFILE_H
40:
41: #include <time.h> /* time_t */
42: #include "str_list.h" /* string list functions and types */
43: #include "wrapdll.h" /* DLLEXPORT and DLLCALL */
44:
45: #if defined(__cplusplus)
46: extern "C" {
47: #endif
48:
49: /* semfile.c */
50: DLLEXPORT BOOL DLLCALL semfile_signal(const char* fname, const char* text);
51: DLLEXPORT BOOL DLLCALL semfile_check(time_t* t, const char* fname);
52: DLLEXPORT char* DLLCALL semfile_list_check(time_t* t, str_list_t filelist);
53: DLLEXPORT str_list_t
54: DLLCALL semfile_list_init(const char* parent, const char* action
55: ,const char* service);
56: DLLEXPORT void DLLCALL semfile_list_add(str_list_t* filelist, const char* fname);
57: DLLEXPORT void DLLCALL semfile_list_free(str_list_t* filelist);
58:
59: #if defined(__cplusplus)
60: }
61: #endif
62:
63: #endif /* Don't add anything after this line */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.