Documentation ¶
Index ¶
- Constants
- type ClipboardFormats
- type CliprdrCapabilitiesPDU
- type CliprdrCapabilitySets
- type CliprdrClient
- type CliprdrCtrlClipboardData
- type CliprdrFileContentsRequest
- type CliprdrFileContentsResponse
- type CliprdrFormat
- type CliprdrFormatDataRequest
- type CliprdrFormatDataResponse
- type CliprdrFormatList
- type CliprdrGeneralCapabilitySet
- type CliprdrMonitorReady
- type CliprdrPDUHeader
- type CliprdrTempDirectory
- type DwFlags
- type FileDescriptor
- type FileGroupDescriptor
- type GeneralFlags
- type MsgFlags
- type MsgType
Constants ¶
View Source
const ( CB_MONITOR_READY = 0x0001 CB_FORMAT_LIST = 0x0002 CB_FORMAT_LIST_RESPONSE = 0x0003 CB_FORMAT_DATA_REQUEST = 0x0004 CB_FORMAT_DATA_RESPONSE = 0x0005 CB_TEMP_DIRECTORY = 0x0006 CB_CLIP_CAPS = 0x0007 CB_FILECONTENTS_REQUEST = 0x0008 CB_FILECONTENTS_RESPONSE = 0x0009 CB_LOCK_CLIPDATA = 0x000A CB_UNLOCK_CLIPDATA = 0x000B )
View Source
const ( CB_RESPONSE_OK = 0x0001 CB_RESPONSE_FAIL = 0x0002 CB_ASCII_NAMES = 0x0004 )
View Source
const ( FILECONTENTS_SIZE = 0x00000001 FILECONTENTS_RANGE = 0x00000002 )
View Source
const ( /* CLIPRDR_GENERAL_CAPABILITY.generalFlags */ CB_USE_LONG_FORMAT_NAMES = 0x00000002 CB_STREAM_FILECLIP_ENABLED = 0x00000004 CB_FILECLIP_NO_FILE_PATHS = 0x00000008 CB_CAN_LOCK_CLIPDATA = 0x00000010 CB_HUGE_FILE_SUPPORT_ENABLED = 0x00000020 )
View Source
const ( /* CLIPRDR_GENERAL_CAPABILITY.version */ CB_CAPS_VERSION_1 = 0x00000001 CB_CAPS_VERSION_2 = 0x00000002 )
View Source
const ( FD_CLSID = 0x00000001 FD_SIZEPOINT = 0x00000002 FD_ATTRIBUTES = 0x00000004 FD_CREATETIME = 0x00000008 FD_ACCESSTIME = 0x00000010 FD_WRITESTIME = 0x00000020 FD_FILESIZE = 0x00000040 FD_PROGRESSUI = 0x00004000 FD_LINKUI = 0x00008000 )
View Source
const ( CB_FORMAT_HTML = 0xD010 CB_FORMAT_PNG = 0xD011 CB_FORMAT_JPEG = 0xD012 CB_FORMAT_GIF = 0xD013 CB_FORMAT_TEXTURILIST = 0xD014 CB_FORMAT_GNOMECOPIEDFILES = 0xD015 CB_FORMAT_MATECOPIEDFILES = 0xD016 )
View Source
const (
CB_CAPSTYPE_GENERAL = 0x0001
)
View Source
const (
CB_CAPSTYPE_GENERAL_LEN = 12
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClipboardFormats ¶
type ClipboardFormats uint16
type CliprdrCapabilitiesPDU ¶
type CliprdrCapabilitiesPDU struct { CCapabilitiesSets uint16 `struc:"little,sizeof=CapabilitySets"` Pad1 uint16 `struc:"little"` CapabilitySets []CliprdrGeneralCapabilitySet `struc:"little"` }
type CliprdrCapabilitySets ¶
type CliprdrClient ¶
type CliprdrClient struct { Files []FileDescriptor Control // contains filtered or unexported fields }
func NewCliprdrClient ¶
func NewCliprdrClient() *CliprdrClient
func (*CliprdrClient) GetType ¶
func (c *CliprdrClient) GetType() (string, uint32)
func (*CliprdrClient) Process ¶
func (c *CliprdrClient) Process(s []byte)
func (*CliprdrClient) Sender ¶
func (c *CliprdrClient) Sender(f core.ChannelSender)
type CliprdrCtrlClipboardData ¶
type CliprdrCtrlClipboardData struct {
ClipDataId uint32
}
lock or unlock
type CliprdrFileContentsRequest ¶
type CliprdrFileContentsRequest struct { StreamId uint32 `struc:"little"` Lindex uint32 `struc:"little"` DwFlags uint32 `struc:"little"` NPositionLow uint32 `struc:"little"` NPositionHigh uint32 `struc:"little"` CbRequested uint32 `struc:"little"` ClipDataId uint32 `struc:"little"` }
file contents
func FileContentsSizeRequest ¶
func FileContentsSizeRequest(i uint32) *CliprdrFileContentsRequest
type CliprdrFileContentsResponse ¶
func (*CliprdrFileContentsResponse) Unpack ¶
func (resp *CliprdrFileContentsResponse) Unpack(b []byte)
type CliprdrFormatDataRequest ¶
type CliprdrFormatDataRequest struct {
RequestedFormatId uint32
}
format data
type CliprdrFormatDataResponse ¶
type CliprdrFormatDataResponse struct {
RequestedFormatData []byte
}
type CliprdrFormatList ¶
type CliprdrFormatList struct { NumFormats uint32 Formats []CliprdrFormat }
type CliprdrMonitorReady ¶
type CliprdrMonitorReady struct { }
type CliprdrPDUHeader ¶
type CliprdrPDUHeader struct { MsgType uint16 `struc:"little"` MsgFlags uint16 `struc:"little"` DataLen uint32 `struc:"little"` }
func NewCliprdrPDUHeader ¶
func NewCliprdrPDUHeader(mType, flags uint16, ln uint32) *CliprdrPDUHeader
type CliprdrTempDirectory ¶
type CliprdrTempDirectory struct {
SzTempDir []byte `struc:"[260]byte"`
}
temp dir
type FileDescriptor ¶
type FileDescriptor struct { Flags uint32 `struc:"little"` Clsid [16]byte `struc:"little"` Sizel [8]byte `struc:"little"` Pointl [8]byte `struc:"little"` FileAttributes uint32 `struc:"little"` CreationTime [8]byte `struc:"little"` LastAccessTime [8]byte `struc:"little"` LastWriteTime []byte `struc:"[8]byte"` //8 FileSizeHigh uint32 `struc:"little"` FileSizeLow uint32 `struc:"little"` FileName []byte `struc:"[512]byte"` }
type FileGroupDescriptor ¶
type FileGroupDescriptor struct { CItems uint32 `struc:"little"` Fgd []FileDescriptor `struc:"sizefrom=CItems"` }
func (*FileGroupDescriptor) Unpack ¶
func (f *FileGroupDescriptor) Unpack(b []byte) error
type GeneralFlags ¶
type GeneralFlags uint32
Click to show internal directories.
Click to hide internal directories.