Documentation ¶
Index ¶
- Variables
- func AppHostConfigLocationServerHandle(ctx context.Context, o AppHostConfigLocationServer, opNum int, r ndr.Reader) (dcerpc.Operation, error)
- func NewAppHostConfigLocationServerHandle(o AppHostConfigLocationServer) dcerpc.ServerHandle
- func RegisterAppHostConfigLocationServer(conn dcerpc.Conn, o AppHostConfigLocationServer, opts ...dcerpc.Option)
- type AddConfigSectionRequest
- type AddConfigSectionResponse
- type AppHostConfigLocationClient
- type AppHostConfigLocationServer
- type DeleteConfigSectionRequest
- type DeleteConfigSectionResponse
- type GetCountRequest
- type GetCountResponse
- type GetItemRequest
- type GetItemResponse
- type GetPathRequest
- type GetPathResponse
Constants ¶
This section is empty.
Variables ¶
var ( // IAppHostConfigLocation interface identifier 370af178-7758-4dad-8146-7391f6e18585 AppHostConfigLocationIID = &dcom.IID{Data1: 0x370af178, Data2: 0x7758, Data3: 0x4dad, Data4: []byte{0x81, 0x46, 0x73, 0x91, 0xf6, 0xe1, 0x85, 0x85}} // Syntax UUID AppHostConfigLocationSyntaxUUID = &uuid.UUID{TimeLow: 0x370af178, TimeMid: 0x7758, TimeHiAndVersion: 0x4dad, ClockSeqHiAndReserved: 0x81, ClockSeqLow: 0x46, Node: [6]uint8{0x73, 0x91, 0xf6, 0xe1, 0x85, 0x85}} // Syntax ID AppHostConfigLocationSyntaxV0_0 = &dcerpc.SyntaxID{IfUUID: AppHostConfigLocationSyntaxUUID, IfVersionMajor: 0, IfVersionMinor: 0} )
var (
// import guard
GoPackage = "dcom/iisa"
)
Functions ¶
func NewAppHostConfigLocationServerHandle ¶
func NewAppHostConfigLocationServerHandle(o AppHostConfigLocationServer) dcerpc.ServerHandle
func RegisterAppHostConfigLocationServer ¶
func RegisterAppHostConfigLocationServer(conn dcerpc.Conn, o AppHostConfigLocationServer, opts ...dcerpc.Option)
Types ¶
type AddConfigSectionRequest ¶
type AddConfigSectionRequest 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"` }
AddConfigSectionRequest structure represents the AddConfigSection operation request
func (*AddConfigSectionRequest) MarshalNDR ¶
func (*AddConfigSectionRequest) UnmarshalNDR ¶
type AddConfigSectionResponse ¶
type AddConfigSectionResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` AdminElement *iisa.AppHostElement `idl:"name:ppAdminElement" json:"admin_element"` // Return: The AddConfigSection return value. Return int32 `idl:"name:Return" json:"return"` }
AddConfigSectionResponse structure represents the AddConfigSection operation response
func (*AddConfigSectionResponse) MarshalNDR ¶
func (*AddConfigSectionResponse) UnmarshalNDR ¶
type AppHostConfigLocationClient ¶
type AppHostConfigLocationClient interface { // IUnknown retrieval method. Unknown() iunknown.UnknownClient // Path operation. GetPath(context.Context, *GetPathRequest, ...dcerpc.CallOption) (*GetPathResponse, error) // Count operation. GetCount(context.Context, *GetCountRequest, ...dcerpc.CallOption) (*GetCountResponse, error) // Item operation. GetItem(context.Context, *GetItemRequest, ...dcerpc.CallOption) (*GetItemResponse, error) // AddConfigSection operation. AddConfigSection(context.Context, *AddConfigSectionRequest, ...dcerpc.CallOption) (*AddConfigSectionResponse, error) // DeleteConfigSection operation. DeleteConfigSection(context.Context, *DeleteConfigSectionRequest, ...dcerpc.CallOption) (*DeleteConfigSectionResponse, error) // AlterContext alters the client context. AlterContext(context.Context, ...dcerpc.Option) error // IPID sets the object interface identifier. IPID(context.Context, *dcom.IPID) AppHostConfigLocationClient }
IAppHostConfigLocation interface.
type AppHostConfigLocationServer ¶
type AppHostConfigLocationServer interface { // IUnknown base class. iunknown.UnknownServer // Path operation. GetPath(context.Context, *GetPathRequest) (*GetPathResponse, error) // Count operation. GetCount(context.Context, *GetCountRequest) (*GetCountResponse, error) // Item operation. GetItem(context.Context, *GetItemRequest) (*GetItemResponse, error) // AddConfigSection operation. AddConfigSection(context.Context, *AddConfigSectionRequest) (*AddConfigSectionResponse, error) // DeleteConfigSection operation. DeleteConfigSection(context.Context, *DeleteConfigSectionRequest) (*DeleteConfigSectionResponse, error) }
IAppHostConfigLocation server interface.
type DeleteConfigSectionRequest ¶
type DeleteConfigSectionRequest 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"` }
DeleteConfigSectionRequest structure represents the DeleteConfigSection operation request
func (*DeleteConfigSectionRequest) MarshalNDR ¶
func (*DeleteConfigSectionRequest) UnmarshalNDR ¶
type DeleteConfigSectionResponse ¶
type DeleteConfigSectionResponse 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 DeleteConfigSection return value. Return int32 `idl:"name:Return" json:"return"` }
DeleteConfigSectionResponse structure represents the DeleteConfigSection operation response
func (*DeleteConfigSectionResponse) MarshalNDR ¶
func (*DeleteConfigSectionResponse) UnmarshalNDR ¶
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"` Section *iisa.AppHostElement `idl:"name:ppSection" json:"section"` // 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 ¶
type GetPathRequest ¶
type GetPathRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetPathRequest structure represents the Path operation request
func (*GetPathRequest) MarshalNDR ¶
func (*GetPathRequest) UnmarshalNDR ¶
type GetPathResponse ¶
type GetPathResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` LocationPath *oaut.String `idl:"name:pbstrLocationPath" json:"location_path"` // Return: The Path return value. Return int32 `idl:"name:Return" json:"return"` }
GetPathResponse structure represents the Path operation response