aboutsummaryrefslogtreecommitdiffstats
path: root/src/lockfile.h
blob: c8b77f2f6bc1bc66403e02442d08753fb297ae35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * lockfile.h:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

/*
 * $Id$
 */

/*
 * $Log$
 * Revision 1.3  2008/02/15 18:16:36  james
 * *** empty log message ***
 *
 * Revision 1.2  2008/02/15 16:48:56  james
 * *** empty log message ***
 *
 * Revision 1.1  2008/02/15 15:09:17  james
 * *** empty log message ***
 *
 */

#ifndef __LOCKFILE_H__
#define __LOCKFILE_H__

#define FILE_LIST_MAX_LEN 1024

typedef struct Filelist_ent {
	char name[FILE_LIST_MAX_LEN];
	struct Filelist_ent *next;
} Filelist_ent;

typedef struct {
	Filelist_ent *head;
} Filelist;

#endif /* __LOCKFILE_H__ */