From: Michael 'Mickey' Lauer Date: Wed, 25 Nov 2009 12:52:02 +0000 (+0100) Subject: linux: fix InotifyMaskFlags enum and add missing values CLOSE and MOVE X-Git-Tag: 0.7.9~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b9958a8975dfb42d9a6a6b4be6a3e615677c8cc;p=thirdparty%2Fvala.git linux: fix InotifyMaskFlags enum and add missing values CLOSE and MOVE --- diff --git a/vapi/linux.vapi b/vapi/linux.vapi index caa2185b6..e21721e54 100644 --- a/vapi/linux.vapi +++ b/vapi/linux.vapi @@ -52,16 +52,18 @@ namespace Linux { NONBLOCK } - [CCode (cprefix = "IN_", cheader_filename = "sys/inotify.h")] + [CCode (cname = "int", cprefix = "IN_", cheader_filename = "sys/inotify.h")] public enum InotifyMaskFlags { ACCESS, ATTRIB, + CLOSE, CLOSE_WRITE, CLOSE_NOWRITE, CREATE, DELETE, DELETE_SELF, MODIFY, + MOVE, MOVE_SELF, MOVED_FROM, MOVED_TO,