blob: 5ce41983c3c36eb3aaf74298972c049f01922e36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com>
//
// SPDX-License-Identifier: GPL-2.0-or-later
package btrfsitem
import (
"git.lukeshu.com/btrfs-progs-ng/lib/binstruct"
)
type SharedDataRef struct { // SHARED_DATA_REF=184
Count int32 `bin:"off=0, siz=4"`
binstruct.End `bin:"off=4"`
}
|