ifolderaction

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 30, 2024 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// IFolderAction interface identifier 03837543-098b-11d8-9414-505054503030
	FolderActionIID = &dcom.IID{Data1: 0x03837543, Data2: 0x098b, Data3: 0x11d8, Data4: []byte{0x94, 0x14, 0x50, 0x50, 0x54, 0x50, 0x30, 0x30}}
	// Syntax UUID
	FolderActionSyntaxUUID = &uuid.UUID{TimeLow: 0x3837543, TimeMid: 0x98b, TimeHiAndVersion: 0x11d8, ClockSeqHiAndReserved: 0x94, ClockSeqLow: 0x14, Node: [6]uint8{0x50, 0x50, 0x54, 0x50, 0x30, 0x30}}
	// Syntax ID
	FolderActionSyntaxV0_0 = &dcerpc.SyntaxID{IfUUID: FolderActionSyntaxUUID, IfVersionMajor: 0, IfVersionMinor: 0}
)
View Source
var (
	// import guard
	GoPackage = "dcom/pla"
)

Functions

func FolderActionServerHandle

func FolderActionServerHandle(ctx context.Context, o FolderActionServer, opNum int, r ndr.Reader) (dcerpc.Operation, error)

func NewFolderActionServerHandle

func NewFolderActionServerHandle(o FolderActionServer) dcerpc.ServerHandle

func RegisterFolderActionServer

func RegisterFolderActionServer(conn dcerpc.Conn, o FolderActionServer, opts ...dcerpc.Option)

Types

type FolderActionClient

type FolderActionClient interface {

	// IDispatch retrieval method.
	Dispatch() idispatch.DispatchClient

	// Age operation.
	GetAge(context.Context, *GetAgeRequest, ...dcerpc.CallOption) (*GetAgeResponse, error)

	// Age operation.
	SetAge(context.Context, *SetAgeRequest, ...dcerpc.CallOption) (*SetAgeResponse, error)

	// Size operation.
	GetSize(context.Context, *GetSizeRequest, ...dcerpc.CallOption) (*GetSizeResponse, error)

	// Size operation.
	SetSize(context.Context, *SetSizeRequest, ...dcerpc.CallOption) (*SetSizeResponse, error)

	// Actions operation.
	GetActions(context.Context, *GetActionsRequest, ...dcerpc.CallOption) (*GetActionsResponse, error)

	// Actions operation.
	SetActions(context.Context, *SetActionsRequest, ...dcerpc.CallOption) (*SetActionsResponse, error)

	// SendCabTo operation.
	GetSendCabTo(context.Context, *GetSendCabToRequest, ...dcerpc.CallOption) (*GetSendCabToResponse, error)

	// SendCabTo operation.
	SetSendCabTo(context.Context, *SetSendCabToRequest, ...dcerpc.CallOption) (*SetSendCabToResponse, error)

	// AlterContext alters the client context.
	AlterContext(context.Context, ...dcerpc.Option) error

	// IPID sets the object interface identifier.
	IPID(context.Context, *dcom.IPID) FolderActionClient
}

IFolderAction interface.

func NewFolderActionClient

func NewFolderActionClient(ctx context.Context, cc dcerpc.Conn, opts ...dcerpc.Option) (FolderActionClient, error)

type FolderActionServer

type FolderActionServer interface {

	// IDispatch base class.
	idispatch.DispatchServer

	// Age operation.
	GetAge(context.Context, *GetAgeRequest) (*GetAgeResponse, error)

	// Age operation.
	SetAge(context.Context, *SetAgeRequest) (*SetAgeResponse, error)

	// Size operation.
	GetSize(context.Context, *GetSizeRequest) (*GetSizeResponse, error)

	// Size operation.
	SetSize(context.Context, *SetSizeRequest) (*SetSizeResponse, error)

	// Actions operation.
	GetActions(context.Context, *GetActionsRequest) (*GetActionsResponse, error)

	// Actions operation.
	SetActions(context.Context, *SetActionsRequest) (*SetActionsResponse, error)

	// SendCabTo operation.
	GetSendCabTo(context.Context, *GetSendCabToRequest) (*GetSendCabToResponse, error)

	// SendCabTo operation.
	SetSendCabTo(context.Context, *SetSendCabToRequest) (*SetSendCabToResponse, error)
}

IFolderAction server interface.

type GetActionsRequest

type GetActionsRequest struct {
	// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
	This *dcom.ORPCThis `idl:"name:This" json:"this"`
}

GetActionsRequest structure represents the Actions operation request

func (*GetActionsRequest) MarshalNDR

func (o *GetActionsRequest) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*GetActionsRequest) UnmarshalNDR

func (o *GetActionsRequest) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type GetActionsResponse

type GetActionsResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That  *dcom.ORPCThat        `idl:"name:That" json:"that"`
	Steps pla.FolderActionSteps `idl:"name:Steps" json:"steps"`
	// Return: The Actions return value.
	Return int32 `idl:"name:Return" json:"return"`
}

GetActionsResponse structure represents the Actions operation response

func (*GetActionsResponse) MarshalNDR

func (o *GetActionsResponse) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*GetActionsResponse) UnmarshalNDR

func (o *GetActionsResponse) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type GetAgeRequest

type GetAgeRequest struct {
	// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
	This *dcom.ORPCThis `idl:"name:This" json:"this"`
}

GetAgeRequest structure represents the Age operation request

func (*GetAgeRequest) MarshalNDR

func (o *GetAgeRequest) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*GetAgeRequest) UnmarshalNDR

func (o *GetAgeRequest) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type GetAgeResponse

type GetAgeResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That *dcom.ORPCThat `idl:"name:That" json:"that"`
	Age  uint32         `idl:"name:pulAge" json:"age"`
	// Return: The Age return value.
	Return int32 `idl:"name:Return" json:"return"`
}

GetAgeResponse structure represents the Age operation response

func (*GetAgeResponse) MarshalNDR

func (o *GetAgeResponse) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*GetAgeResponse) UnmarshalNDR

func (o *GetAgeResponse) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type GetSendCabToRequest

type GetSendCabToRequest struct {
	// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
	This *dcom.ORPCThis `idl:"name:This" json:"this"`
}

GetSendCabToRequest structure represents the SendCabTo operation request

func (*GetSendCabToRequest) MarshalNDR

func (o *GetSendCabToRequest) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*GetSendCabToRequest) UnmarshalNDR

func (o *GetSendCabToRequest) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type GetSendCabToResponse

type GetSendCabToResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That        *dcom.ORPCThat `idl:"name:That" json:"that"`
	Destination *oaut.String   `idl:"name:pbstrDestination" json:"destination"`
	// Return: The SendCabTo return value.
	Return int32 `idl:"name:Return" json:"return"`
}

GetSendCabToResponse structure represents the SendCabTo operation response

func (*GetSendCabToResponse) MarshalNDR

func (o *GetSendCabToResponse) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*GetSendCabToResponse) UnmarshalNDR

func (o *GetSendCabToResponse) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type GetSizeRequest

type GetSizeRequest struct {
	// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
	This *dcom.ORPCThis `idl:"name:This" json:"this"`
}

GetSizeRequest structure represents the Size operation request

func (*GetSizeRequest) MarshalNDR

func (o *GetSizeRequest) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*GetSizeRequest) UnmarshalNDR

func (o *GetSizeRequest) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type GetSizeResponse

type GetSizeResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That *dcom.ORPCThat `idl:"name:That" json:"that"`
	Age  uint32         `idl:"name:pulAge" json:"age"`
	// Return: The Size return value.
	Return int32 `idl:"name:Return" json:"return"`
}

GetSizeResponse structure represents the Size operation response

func (*GetSizeResponse) MarshalNDR

func (o *GetSizeResponse) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*GetSizeResponse) UnmarshalNDR

func (o *GetSizeResponse) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type SetActionsRequest

type SetActionsRequest struct {
	// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
	This  *dcom.ORPCThis        `idl:"name:This" json:"this"`
	Steps pla.FolderActionSteps `idl:"name:Steps" json:"steps"`
}

SetActionsRequest structure represents the Actions operation request

func (*SetActionsRequest) MarshalNDR

func (o *SetActionsRequest) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*SetActionsRequest) UnmarshalNDR

func (o *SetActionsRequest) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type SetActionsResponse

type SetActionsResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That *dcom.ORPCThat `idl:"name:That" json:"that"`
	// Return: The Actions return value.
	Return int32 `idl:"name:Return" json:"return"`
}

SetActionsResponse structure represents the Actions operation response

func (*SetActionsResponse) MarshalNDR

func (o *SetActionsResponse) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*SetActionsResponse) UnmarshalNDR

func (o *SetActionsResponse) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type SetAgeRequest

type SetAgeRequest struct {
	// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
	This *dcom.ORPCThis `idl:"name:This" json:"this"`
	Age  uint32         `idl:"name:ulAge" json:"age"`
}

SetAgeRequest structure represents the Age operation request

func (*SetAgeRequest) MarshalNDR

func (o *SetAgeRequest) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*SetAgeRequest) UnmarshalNDR

func (o *SetAgeRequest) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type SetAgeResponse

type SetAgeResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That *dcom.ORPCThat `idl:"name:That" json:"that"`
	// Return: The Age return value.
	Return int32 `idl:"name:Return" json:"return"`
}

SetAgeResponse structure represents the Age operation response

func (*SetAgeResponse) MarshalNDR

func (o *SetAgeResponse) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*SetAgeResponse) UnmarshalNDR

func (o *SetAgeResponse) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type SetSendCabToRequest

type SetSendCabToRequest struct {
	// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
	This        *dcom.ORPCThis `idl:"name:This" json:"this"`
	Destination *oaut.String   `idl:"name:bstrDestination" json:"destination"`
}

SetSendCabToRequest structure represents the SendCabTo operation request

func (*SetSendCabToRequest) MarshalNDR

func (o *SetSendCabToRequest) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*SetSendCabToRequest) UnmarshalNDR

func (o *SetSendCabToRequest) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type SetSendCabToResponse

type SetSendCabToResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That *dcom.ORPCThat `idl:"name:That" json:"that"`
	// Return: The SendCabTo return value.
	Return int32 `idl:"name:Return" json:"return"`
}

SetSendCabToResponse structure represents the SendCabTo operation response

func (*SetSendCabToResponse) MarshalNDR

func (o *SetSendCabToResponse) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*SetSendCabToResponse) UnmarshalNDR

func (o *SetSendCabToResponse) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type SetSizeRequest

type SetSizeRequest struct {
	// This: ORPCTHIS structure that is used to send ORPC extension data to the server.
	This *dcom.ORPCThis `idl:"name:This" json:"this"`
	Age  uint32         `idl:"name:ulAge" json:"age"`
}

SetSizeRequest structure represents the Size operation request

func (*SetSizeRequest) MarshalNDR

func (o *SetSizeRequest) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*SetSizeRequest) UnmarshalNDR

func (o *SetSizeRequest) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

type SetSizeResponse

type SetSizeResponse struct {
	// That: ORPCTHAT structure that is used to return ORPC extension data to the client.
	That *dcom.ORPCThat `idl:"name:That" json:"that"`
	// Return: The Size return value.
	Return int32 `idl:"name:Return" json:"return"`
}

SetSizeResponse structure represents the Size operation response

func (*SetSizeResponse) MarshalNDR

func (o *SetSizeResponse) MarshalNDR(ctx context.Context, w ndr.Writer) error

func (*SetSizeResponse) UnmarshalNDR

func (o *SetSizeResponse) UnmarshalNDR(ctx context.Context, r ndr.Reader) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL