Documentation ¶
Index ¶
- Variables
- func AppHostChangeHandlerServerHandle(ctx context.Context, o AppHostChangeHandlerServer, opNum int, r ndr.Reader) (dcerpc.Operation, error)
- func NewAppHostChangeHandlerServerHandle(o AppHostChangeHandlerServer) dcerpc.ServerHandle
- func RegisterAppHostChangeHandlerServer(conn dcerpc.Conn, o AppHostChangeHandlerServer, opts ...dcerpc.Option)
- type AppHostChangeHandlerClient
- type AppHostChangeHandlerServer
- type OnSectionChangesRequest
- type OnSectionChangesResponse
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // IAppHostChangeHandler interface identifier 09829352-87c2-418d-8d79-4133969a489d AppHostChangeHandlerIID = &dcom.IID{Data1: 0x09829352, Data2: 0x87c2, Data3: 0x418d, Data4: []byte{0x8d, 0x79, 0x41, 0x33, 0x96, 0x9a, 0x48, 0x9d}} // Syntax UUID AppHostChangeHandlerSyntaxUUID = &uuid.UUID{TimeLow: 0x9829352, TimeMid: 0x87c2, TimeHiAndVersion: 0x418d, ClockSeqHiAndReserved: 0x8d, ClockSeqLow: 0x79, Node: [6]uint8{0x41, 0x33, 0x96, 0x9a, 0x48, 0x9d}} // Syntax ID AppHostChangeHandlerSyntaxV0_0 = &dcerpc.SyntaxID{IfUUID: AppHostChangeHandlerSyntaxUUID, IfVersionMajor: 0, IfVersionMinor: 0} )
View Source
var (
// import guard
GoPackage = "dcom/iisa"
)
Functions ¶
func NewAppHostChangeHandlerServerHandle ¶
func NewAppHostChangeHandlerServerHandle(o AppHostChangeHandlerServer) dcerpc.ServerHandle
func RegisterAppHostChangeHandlerServer ¶
func RegisterAppHostChangeHandlerServer(conn dcerpc.Conn, o AppHostChangeHandlerServer, opts ...dcerpc.Option)
Types ¶
type AppHostChangeHandlerClient ¶
type AppHostChangeHandlerClient interface { // IUnknown retrieval method. Unknown() iunknown.UnknownClient // OnSectionChanges operation. OnSectionChanges(context.Context, *OnSectionChangesRequest, ...dcerpc.CallOption) (*OnSectionChangesResponse, error) // AlterContext alters the client context. AlterContext(context.Context, ...dcerpc.Option) error // IPID sets the object interface identifier. IPID(context.Context, *dcom.IPID) AppHostChangeHandlerClient }
IAppHostChangeHandler interface.
type AppHostChangeHandlerServer ¶
type AppHostChangeHandlerServer interface { // IUnknown base class. iunknown.UnknownServer // OnSectionChanges operation. OnSectionChanges(context.Context, *OnSectionChangesRequest) (*OnSectionChangesResponse, error) }
IAppHostChangeHandler server interface.
type OnSectionChangesRequest ¶
type OnSectionChangesRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` SectionName *oaut.String `idl:"name:bstrSectionName" json:"section_name"` ConfigPath *oaut.String `idl:"name:bstrConfigPath" json:"config_path"` }
OnSectionChangesRequest structure represents the OnSectionChanges operation request
func (*OnSectionChangesRequest) MarshalNDR ¶
func (*OnSectionChangesRequest) UnmarshalNDR ¶
type OnSectionChangesResponse ¶
type OnSectionChangesResponse 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 OnSectionChanges return value. Return int32 `idl:"name:Return" json:"return"` }
OnSectionChangesResponse structure represents the OnSectionChanges operation response
func (*OnSectionChangesResponse) MarshalNDR ¶
func (*OnSectionChangesResponse) UnmarshalNDR ¶
Click to show internal directories.
Click to hide internal directories.