-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy patheven.go
44 lines (40 loc) · 1.28 KB
/
even.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// The even package implements the EVEN client protocol.
//
// # Introduction
//
// The EventLog Remoting Protocol is an RPC-based protocol that exposes remote procedure
// call (RPC) methods for reading events in both live event logs and backup event logs
// on remote computers. The protocol also specifies how to get general information on
// a log, such as the number of records in the log, the oldest records in the log, and
// if the log is full. The protocol can also be used for clearing and backing up both
// types of event logs.
//
// Note Early releases of the EventLog Remoting Protocol have never been assigned a
// version number. However, newer releases of the EventLog Remoting Protocol have version
// numbers. For example, the version released with Windows Vista operating system is
// version 6.0.
package even
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.Encode
_ = strings.TrimPrefix
_ = ndr.ZeroString
_ = (*uuid.UUID)(nil)
_ = (*dcerpc.SyntaxID)(nil)
_ = (*errors.Error)(nil)
)
var (
// import guard
GoPackage = "even"
)