chiark / gitweb /
03d5ed31ef56f3f34bcb86d319ca86ca348e22c5
[sympathy.git] / src / lockfile.h
1 /*
2  * lockfile.h:
3  *
4  * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
5  * All rights reserved.
6  *
7  */
8
9 /*
10  * $Id$
11  */
12
13 /*
14  * $Log$
15  * Revision 1.2  2008/02/15 16:48:56  james
16  * *** empty log message ***
17  *
18  * Revision 1.1  2008/02/15 15:09:17  james
19  * *** empty log message ***
20  *
21  */
22
23 #ifndef __LOCKFILE_H__
24 #define __LOCKFILE_H__
25
26 typedef struct Filelist_ent {
27         char name[1024];
28         struct Filelist_ent *next;
29 } Filelist_ent;
30
31 typedef struct {
32         Filelist_ent *head;
33 } Filelist;
34
35 #endif /* __LOCKFILE_H__ */