OLD | NEW |
1 // Copyright 2011 The Go Authors. All rights reserved. | 1 // Copyright 2011 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
| 5 // +build windows |
| 6 |
5 // Package winfsnotify allows the user to receive | 7 // Package winfsnotify allows the user to receive |
6 // file system event notifications on Windows. | 8 // file system event notifications on Windows. |
7 package winfsnotify | 9 package winfsnotify |
8 | 10 |
9 import ( | 11 import ( |
10 "errors" | 12 "errors" |
11 "fmt" | 13 "fmt" |
12 "os" | 14 "os" |
13 "path/filepath" | 15 "path/filepath" |
14 "runtime" | 16 "runtime" |
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
561 {FS_CREATE, "FS_CREATE"}, | 563 {FS_CREATE, "FS_CREATE"}, |
562 {FS_DELETE, "FS_DELETE"}, | 564 {FS_DELETE, "FS_DELETE"}, |
563 {FS_DELETE_SELF, "FS_DELETE_SELF"}, | 565 {FS_DELETE_SELF, "FS_DELETE_SELF"}, |
564 {FS_MODIFY, "FS_MODIFY"}, | 566 {FS_MODIFY, "FS_MODIFY"}, |
565 {FS_MOVED_FROM, "FS_MOVED_FROM"}, | 567 {FS_MOVED_FROM, "FS_MOVED_FROM"}, |
566 {FS_MOVED_TO, "FS_MOVED_TO"}, | 568 {FS_MOVED_TO, "FS_MOVED_TO"}, |
567 {FS_MOVE_SELF, "FS_MOVE_SELF"}, | 569 {FS_MOVE_SELF, "FS_MOVE_SELF"}, |
568 {FS_IGNORED, "FS_IGNORED"}, | 570 {FS_IGNORED, "FS_IGNORED"}, |
569 {FS_Q_OVERFLOW, "FS_Q_OVERFLOW"}, | 571 {FS_Q_OVERFLOW, "FS_Q_OVERFLOW"}, |
570 } | 572 } |
OLD | NEW |