~ubuntu-branches/debian/jessie/gamin/jessie

« back to all changes in this revision

Viewing changes to server/gam_fs.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2007-03-23 14:43:49 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070323144349-1inpdk22uaneks9h
Tags: 0.1.8-2
* debian/control: Improve long description. (Closes: #405347)
* debian/patches/14_nfs-fix.patch: Fix gam_server startup for Thunar.
  Thanks to Maximiliano Curia. (Closes: #403247)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __GAM_FS_H__
 
2
#define __GAM_FS_H__
 
3
 
 
4
typedef enum {
 
5
        GFS_MT_KERNEL,
 
6
        GFS_MT_POLL,
 
7
        GFS_MT_NONE,
 
8
} gam_fs_mon_type;
 
9
 
 
10
void            gam_fs_init                     (void);
 
11
gam_fs_mon_type gam_fs_get_mon_type             (const char *path);
 
12
int             gam_fs_get_poll_timeout         (const char *path);
 
13
void            gam_fs_set                      (const char *fsname, gam_fs_mon_type type, int poll_timeout);
 
14
void            gam_fs_unset                    (const char *path);
 
15
void            gam_fs_debug                    (void);
 
16
 
 
17
#endif /* __GAM_SERVER_H__ */
 
18