File: auto.go

package info (click to toggle)
golang-github-linuxdeepin-go-x11-client 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,784 kB
  • sloc: python: 944; sh: 38; makefile: 17
file content (29 lines) | stat: -rw-r--r-- 541 bytes parent folder | download
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
// SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later

package bigrequests

import x "github.com/linuxdeepin/go-x11-client"

// _ns.ext_name: BigRequests
const MajorVersion = 0
const MinorVersion = 0

var _ext *x.Extension

func Ext() *x.Extension {
	return _ext
}

const EnableOpcode = 0

type EnableCookie x.SeqNum

var requestOpcodeNameMap = map[uint]string{
	EnableOpcode: "Enable",
}

func init() {
	_ext = x.NewExtension("BIG-REQUESTS", 0, nil, requestOpcodeNameMap)
}