Commit 1bcdf26c authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

raw: document Flags/Fh methods.

parent 1dbaf6ba
...@@ -33,10 +33,14 @@ type GetAttrIn struct { ...@@ -33,10 +33,14 @@ type GetAttrIn struct {
Fh_ uint64 Fh_ uint64
} }
// Flags accesses the flags. This is a method, because OSXFuse does not
// have GetAttrIn flags.
func (g *GetAttrIn) Flags() uint32 { func (g *GetAttrIn) Flags() uint32 {
return g.Flags_ return g.Flags_
} }
// Fh accesses the file handle. This is a method, because OSXFuse does not
// have GetAttrIn flags.
func (g *GetAttrIn) Fh() uint64 { func (g *GetAttrIn) Fh() uint64 {
return g.Fh_ return g.Fh_
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment