Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(310)

Side by Side Diff: src/pkg/exp/winfsnotify/winfsnotify.go

Issue 5490047: code review 5490047: more tags for go/build (Closed)
Patch Set: diff -r e22a8db91330 https://go.googlecode.com/hg/ Created 13 years, 3 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/pkg/exp/terminal/util.go ('k') | src/pkg/exp/winfsnotify/winfsnotify_test.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « src/pkg/exp/terminal/util.go ('k') | src/pkg/exp/winfsnotify/winfsnotify_test.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b