Documentation ¶
Index ¶
- Variables
- func AppHostConstantValueCollectionServerHandle(ctx context.Context, o AppHostConstantValueCollectionServer, opNum int, ...) (dcerpc.Operation, error)
- func NewAppHostConstantValueCollectionServerHandle(o AppHostConstantValueCollectionServer) dcerpc.ServerHandle
- func RegisterAppHostConstantValueCollectionServer(conn dcerpc.Conn, o AppHostConstantValueCollectionServer, ...)
- type AppHostConstantValueCollectionClient
- type AppHostConstantValueCollectionServer
- type GetCountRequest
- type GetCountResponse
- type GetItemRequest
- type GetItemResponse
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // IAppHostConstantValueCollection interface identifier 5b5a68e6-8b9f-45e1-8199-a95ffccdffff AppHostConstantValueCollectionIID = &dcom.IID{Data1: 0x5b5a68e6, Data2: 0x8b9f, Data3: 0x45e1, Data4: []byte{0x81, 0x99, 0xa9, 0x5f, 0xfc, 0xcd, 0xff, 0xff}} // Syntax UUID AppHostConstantValueCollectionSyntaxUUID = &uuid.UUID{TimeLow: 0x5b5a68e6, TimeMid: 0x8b9f, TimeHiAndVersion: 0x45e1, ClockSeqHiAndReserved: 0x81, ClockSeqLow: 0x99, Node: [6]uint8{0xa9, 0x5f, 0xfc, 0xcd, 0xff, 0xff}} // Syntax ID AppHostConstantValueCollectionSyntaxV0_0 = &dcerpc.SyntaxID{IfUUID: AppHostConstantValueCollectionSyntaxUUID, IfVersionMajor: 0, IfVersionMinor: 0} )
View Source
var (
// import guard
GoPackage = "dcom/iisa"
)
Functions ¶
func NewAppHostConstantValueCollectionServerHandle ¶
func NewAppHostConstantValueCollectionServerHandle(o AppHostConstantValueCollectionServer) dcerpc.ServerHandle
func RegisterAppHostConstantValueCollectionServer ¶
func RegisterAppHostConstantValueCollectionServer(conn dcerpc.Conn, o AppHostConstantValueCollectionServer, opts ...dcerpc.Option)
Types ¶
type AppHostConstantValueCollectionClient ¶
type AppHostConstantValueCollectionClient interface { // IUnknown retrieval method. Unknown() iunknown.UnknownClient // Count operation. GetCount(context.Context, *GetCountRequest, ...dcerpc.CallOption) (*GetCountResponse, error) // Item operation. GetItem(context.Context, *GetItemRequest, ...dcerpc.CallOption) (*GetItemResponse, error) // AlterContext alters the client context. AlterContext(context.Context, ...dcerpc.Option) error // IPID sets the object interface identifier. IPID(context.Context, *dcom.IPID) AppHostConstantValueCollectionClient }
IAppHostConstantValueCollection interface.
type AppHostConstantValueCollectionServer ¶
type AppHostConstantValueCollectionServer interface { // IUnknown base class. iunknown.UnknownServer // Count operation. GetCount(context.Context, *GetCountRequest) (*GetCountResponse, error) // Item operation. GetItem(context.Context, *GetItemRequest) (*GetItemResponse, error) }
IAppHostConstantValueCollection server interface.
type GetCountRequest ¶
type GetCountRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetCountRequest structure represents the Count operation request
func (*GetCountRequest) MarshalNDR ¶
func (*GetCountRequest) UnmarshalNDR ¶
type GetCountResponse ¶
type GetCountResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Count uint32 `idl:"name:pcCount" json:"count"` // Return: The Count return value. Return int32 `idl:"name:Return" json:"return"` }
GetCountResponse structure represents the Count operation response
func (*GetCountResponse) MarshalNDR ¶
func (*GetCountResponse) UnmarshalNDR ¶
type GetItemRequest ¶
type GetItemRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` Index *oaut.Variant `idl:"name:cIndex" json:"index"` }
GetItemRequest structure represents the Item operation request
func (*GetItemRequest) MarshalNDR ¶
func (*GetItemRequest) UnmarshalNDR ¶
type GetItemResponse ¶
type GetItemResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` ConstantValue *iisa.AppHostConstantValue `idl:"name:ppConstantValue" json:"constant_value"` // Return: The Item return value. Return int32 `idl:"name:Return" json:"return"` }
GetItemResponse structure represents the Item operation response
func (*GetItemResponse) MarshalNDR ¶
func (*GetItemResponse) UnmarshalNDR ¶
Click to show internal directories.
Click to hide internal directories.