blob: c36d717538ffe90fa833c73071811d95bb5026dd (
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
41
42
43
44
45
46
47
48
49
50
51
52
|
/* $Id$
*
*/
#ifndef _plpfuse_h_
#define _plpfuse_h_
#include <fuse.h>
typedef struct p_inode {
int inode;
char *name;
struct p_inode *nextnam, *nextnum;
} p_inode;
/**
* Description of a Psion-Device
*/
typedef struct p_device {
char *name; /* Volume-Name */
char letter; /* Drive-Letter */
long attrib; /* Device-Attribs */
long total; /* Total capacity in bytes */
long free; /* Free space in bytes */
struct p_device *next;
} device;
/*
* Description of a Psion-File/Dir
*/
typedef struct p_dentry
{
char *name;
long time;
long attr;
long size;
long links;
struct p_dentry *next;
} dentry;
extern int debug;
extern int debuglog(char *fmt, ...);
extern int errorlog(char *fmt, ...);
extern int infolog(char *fmt, ...);
#define BLOCKSIZE 512
#define FID 7 /* File system id */
#endif
extern struct fuse_operations plp_oper;
|