Documentation ¶
Index ¶
- Variables
- func AppHostConstantValueServerHandle(ctx context.Context, o AppHostConstantValueServer, opNum int, r ndr.Reader) (dcerpc.Operation, error)
- func NewAppHostConstantValueServerHandle(o AppHostConstantValueServer) dcerpc.ServerHandle
- func RegisterAppHostConstantValueServer(conn dcerpc.Conn, o AppHostConstantValueServer, opts ...dcerpc.Option)
- type AppHostConstantValueClient
- type AppHostConstantValueServer
- type GetNameRequest
- type GetNameResponse
- type GetValueRequest
- type GetValueResponse
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // IAppHostConstantValue interface identifier 0716caf8-7d05-4a46-8099-77594be91394 AppHostConstantValueIID = &dcom.IID{Data1: 0x0716caf8, Data2: 0x7d05, Data3: 0x4a46, Data4: []byte{0x80, 0x99, 0x77, 0x59, 0x4b, 0xe9, 0x13, 0x94}} // Syntax UUID AppHostConstantValueSyntaxUUID = &uuid.UUID{TimeLow: 0x716caf8, TimeMid: 0x7d05, TimeHiAndVersion: 0x4a46, ClockSeqHiAndReserved: 0x80, ClockSeqLow: 0x99, Node: [6]uint8{0x77, 0x59, 0x4b, 0xe9, 0x13, 0x94}} // Syntax ID AppHostConstantValueSyntaxV0_0 = &dcerpc.SyntaxID{IfUUID: AppHostConstantValueSyntaxUUID, IfVersionMajor: 0, IfVersionMinor: 0} )
View Source
var (
// import guard
GoPackage = "dcom/iisa"
)
Functions ¶
func NewAppHostConstantValueServerHandle ¶
func NewAppHostConstantValueServerHandle(o AppHostConstantValueServer) dcerpc.ServerHandle
func RegisterAppHostConstantValueServer ¶
func RegisterAppHostConstantValueServer(conn dcerpc.Conn, o AppHostConstantValueServer, opts ...dcerpc.Option)
Types ¶
type AppHostConstantValueClient ¶
type AppHostConstantValueClient interface { // IUnknown retrieval method. Unknown() iunknown.UnknownClient // Name operation. GetName(context.Context, *GetNameRequest, ...dcerpc.CallOption) (*GetNameResponse, error) // Value operation. GetValue(context.Context, *GetValueRequest, ...dcerpc.CallOption) (*GetValueResponse, error) // AlterContext alters the client context. AlterContext(context.Context, ...dcerpc.Option) error // IPID sets the object interface identifier. IPID(context.Context, *dcom.IPID) AppHostConstantValueClient }
IAppHostConstantValue interface.
type AppHostConstantValueServer ¶
type AppHostConstantValueServer interface { // IUnknown base class. iunknown.UnknownServer // Name operation. GetName(context.Context, *GetNameRequest) (*GetNameResponse, error) // Value operation. GetValue(context.Context, *GetValueRequest) (*GetValueResponse, error) }
IAppHostConstantValue server interface.
type GetNameRequest ¶
type GetNameRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetNameRequest structure represents the Name operation request
func (*GetNameRequest) MarshalNDR ¶
func (*GetNameRequest) UnmarshalNDR ¶
type GetNameResponse ¶
type GetNameResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Name *oaut.String `idl:"name:pbstrName" json:"name"` // Return: The Name return value. Return int32 `idl:"name:Return" json:"return"` }
GetNameResponse structure represents the Name operation response
func (*GetNameResponse) MarshalNDR ¶
func (*GetNameResponse) UnmarshalNDR ¶
type GetValueRequest ¶
type GetValueRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetValueRequest structure represents the Value operation request
func (*GetValueRequest) MarshalNDR ¶
func (*GetValueRequest) UnmarshalNDR ¶
type GetValueResponse ¶
type GetValueResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Value uint32 `idl:"name:pdwValue" json:"value"` // Return: The Value return value. Return int32 `idl:"name:Return" json:"return"` }
GetValueResponse structure represents the Value operation response
func (*GetValueResponse) MarshalNDR ¶
func (*GetValueResponse) UnmarshalNDR ¶
Click to show internal directories.
Click to hide internal directories.