1166 lines
30 KiB
C
1166 lines
30 KiB
C
//
|
|
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
|
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
|
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
|
// PARTICULAR PURPOSE.
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved
|
|
//
|
|
|
|
/*
|
|
**==============================================================================
|
|
**
|
|
** WARNING: THIS FILE WAS AUTOMATICALLY GENERATED. PLEASE DO NOT EDIT.
|
|
**
|
|
**==============================================================================
|
|
*/
|
|
#ifndef _CIM_Service_h
|
|
#define _CIM_Service_h
|
|
|
|
#include <MI.h>
|
|
#include "CIM_EnabledLogicalElement.h"
|
|
#include "CIM_ConcreteJob.h"
|
|
|
|
/*
|
|
**==============================================================================
|
|
**
|
|
** CIM_Service [CIM_Service]
|
|
**
|
|
** Keys:
|
|
** Name
|
|
** SystemCreationClassName
|
|
** SystemName
|
|
** CreationClassName
|
|
**
|
|
**==============================================================================
|
|
*/
|
|
|
|
typedef struct _CIM_Service /* extends CIM_EnabledLogicalElement */
|
|
{
|
|
MI_Instance __instance;
|
|
/* CIM_ManagedElement properties */
|
|
MI_ConstStringField InstanceID;
|
|
MI_ConstStringField Caption;
|
|
MI_ConstStringField Description;
|
|
MI_ConstStringField ElementName;
|
|
/* CIM_ManagedSystemElement properties */
|
|
MI_ConstDatetimeField InstallDate;
|
|
/*KEY*/ MI_ConstStringField Name;
|
|
MI_ConstUint16AField OperationalStatus;
|
|
MI_ConstStringAField StatusDescriptions;
|
|
MI_ConstStringField Status;
|
|
MI_ConstUint16Field HealthState;
|
|
MI_ConstUint16Field CommunicationStatus;
|
|
MI_ConstUint16Field DetailedStatus;
|
|
MI_ConstUint16Field OperatingStatus;
|
|
MI_ConstUint16Field PrimaryStatus;
|
|
/* CIM_LogicalElement properties */
|
|
/* CIM_EnabledLogicalElement properties */
|
|
MI_ConstUint16Field EnabledState;
|
|
MI_ConstStringField OtherEnabledState;
|
|
MI_ConstUint16Field RequestedState;
|
|
MI_ConstUint16Field EnabledDefault;
|
|
MI_ConstDatetimeField TimeOfLastStateChange;
|
|
MI_ConstUint16AField AvailableRequestedStates;
|
|
MI_ConstUint16Field TransitioningToState;
|
|
/* CIM_Service properties */
|
|
/*KEY*/ MI_ConstStringField SystemCreationClassName;
|
|
/*KEY*/ MI_ConstStringField SystemName;
|
|
/*KEY*/ MI_ConstStringField CreationClassName;
|
|
MI_ConstStringField PrimaryOwnerName;
|
|
MI_ConstStringField PrimaryOwnerContact;
|
|
MI_ConstStringField StartMode;
|
|
MI_ConstBooleanField Started;
|
|
}
|
|
CIM_Service;
|
|
|
|
typedef struct _CIM_Service_Ref
|
|
{
|
|
CIM_Service* value;
|
|
MI_Boolean exists;
|
|
MI_Uint8 flags;
|
|
}
|
|
CIM_Service_Ref;
|
|
|
|
typedef struct _CIM_Service_ConstRef
|
|
{
|
|
MI_CONST CIM_Service* value;
|
|
MI_Boolean exists;
|
|
MI_Uint8 flags;
|
|
}
|
|
CIM_Service_ConstRef;
|
|
|
|
typedef struct _CIM_Service_Array
|
|
{
|
|
struct _CIM_Service** data;
|
|
MI_Uint32 size;
|
|
}
|
|
CIM_Service_Array;
|
|
|
|
typedef struct _CIM_Service_ConstArray
|
|
{
|
|
struct _CIM_Service MI_CONST* MI_CONST* data;
|
|
MI_Uint32 size;
|
|
}
|
|
CIM_Service_ConstArray;
|
|
|
|
typedef struct _CIM_Service_ArrayRef
|
|
{
|
|
CIM_Service_Array value;
|
|
MI_Boolean exists;
|
|
MI_Uint8 flags;
|
|
}
|
|
CIM_Service_ArrayRef;
|
|
|
|
typedef struct _CIM_Service_ConstArrayRef
|
|
{
|
|
CIM_Service_ConstArray value;
|
|
MI_Boolean exists;
|
|
MI_Uint8 flags;
|
|
}
|
|
CIM_Service_ConstArrayRef;
|
|
|
|
MI_EXTERN_C MI_CONST MI_ClassDecl CIM_Service_rtti;
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Construct(
|
|
_Out_ CIM_Service* self,
|
|
_In_ MI_Context* context)
|
|
{
|
|
return MI_Context_ConstructInstance(context, &CIM_Service_rtti,
|
|
(MI_Instance*)&self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clone(
|
|
_In_ const CIM_Service* self,
|
|
_Outptr_ CIM_Service** newInstance)
|
|
{
|
|
return MI_Instance_Clone(
|
|
&self->__instance, (MI_Instance**)newInstance);
|
|
}
|
|
|
|
MI_INLINE MI_Boolean MI_CALL CIM_Service_IsA(
|
|
_In_ const MI_Instance* self)
|
|
{
|
|
MI_Boolean res = MI_FALSE;
|
|
return MI_Instance_IsA(self, &CIM_Service_rtti, &res) == MI_RESULT_OK && res;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Destruct(_Inout_ CIM_Service* self)
|
|
{
|
|
return MI_Instance_Destruct(&self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Delete(_Inout_ CIM_Service* self)
|
|
{
|
|
return MI_Instance_Delete(&self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Post(
|
|
_In_ const CIM_Service* self,
|
|
_In_ MI_Context* context)
|
|
{
|
|
return MI_Context_PostInstance(context, &self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_InstanceID(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
0,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_InstanceID(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
0,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_InstanceID(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_Caption(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
1,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_Caption(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
1,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_Caption(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
1);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_Description(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
2,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_Description(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
2,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_Description(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
2);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_ElementName(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
3,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_ElementName(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
3,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_ElementName(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
3);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_InstallDate(
|
|
_Inout_ CIM_Service* self,
|
|
_In_ MI_Datetime x)
|
|
{
|
|
((MI_DatetimeField*)&self->InstallDate)->value = x;
|
|
((MI_DatetimeField*)&self->InstallDate)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_InstallDate(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
memset((void*)&self->InstallDate, 0, sizeof(self->InstallDate));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_Name(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
5,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_Name(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
5,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_Name(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
5);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_OperationalStatus(
|
|
_Inout_ CIM_Service* self,
|
|
_In_reads_opt_(size) const MI_Uint16* data,
|
|
_In_ MI_Uint32 size)
|
|
{
|
|
MI_Array arr;
|
|
arr.data = (void*)data;
|
|
arr.size = size;
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
6,
|
|
(MI_Value*)&arr,
|
|
MI_UINT16A,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_OperationalStatus(
|
|
_Inout_ CIM_Service* self,
|
|
_In_reads_opt_(size) const MI_Uint16* data,
|
|
_In_ MI_Uint32 size)
|
|
{
|
|
MI_Array arr;
|
|
arr.data = (void*)data;
|
|
arr.size = size;
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
6,
|
|
(MI_Value*)&arr,
|
|
MI_UINT16A,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_OperationalStatus(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
6);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_StatusDescriptions(
|
|
_Inout_ CIM_Service* self,
|
|
_In_reads_opt_(size) const MI_Char** data,
|
|
_In_ MI_Uint32 size)
|
|
{
|
|
MI_Array arr;
|
|
arr.data = (void*)data;
|
|
arr.size = size;
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
7,
|
|
(MI_Value*)&arr,
|
|
MI_STRINGA,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_StatusDescriptions(
|
|
_Inout_ CIM_Service* self,
|
|
_In_reads_opt_(size) const MI_Char** data,
|
|
_In_ MI_Uint32 size)
|
|
{
|
|
MI_Array arr;
|
|
arr.data = (void*)data;
|
|
arr.size = size;
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
7,
|
|
(MI_Value*)&arr,
|
|
MI_STRINGA,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_StatusDescriptions(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
7);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_Status(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
8,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_Status(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
8,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_Status(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
8);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_HealthState(
|
|
_Inout_ CIM_Service* self,
|
|
_In_ MI_Uint16 x)
|
|
{
|
|
((MI_Uint16Field*)&self->HealthState)->value = x;
|
|
((MI_Uint16Field*)&self->HealthState)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_HealthState(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
memset((void*)&self->HealthState, 0, sizeof(self->HealthState));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_CommunicationStatus(
|
|
_Inout_ CIM_Service* self,
|
|
_In_ MI_Uint16 x)
|
|
{
|
|
((MI_Uint16Field*)&self->CommunicationStatus)->value = x;
|
|
((MI_Uint16Field*)&self->CommunicationStatus)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_CommunicationStatus(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
memset((void*)&self->CommunicationStatus, 0, sizeof(self->CommunicationStatus));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_DetailedStatus(
|
|
_Inout_ CIM_Service* self,
|
|
_In_ MI_Uint16 x)
|
|
{
|
|
((MI_Uint16Field*)&self->DetailedStatus)->value = x;
|
|
((MI_Uint16Field*)&self->DetailedStatus)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_DetailedStatus(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
memset((void*)&self->DetailedStatus, 0, sizeof(self->DetailedStatus));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_OperatingStatus(
|
|
_Inout_ CIM_Service* self,
|
|
_In_ MI_Uint16 x)
|
|
{
|
|
((MI_Uint16Field*)&self->OperatingStatus)->value = x;
|
|
((MI_Uint16Field*)&self->OperatingStatus)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_OperatingStatus(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
memset((void*)&self->OperatingStatus, 0, sizeof(self->OperatingStatus));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_PrimaryStatus(
|
|
_Inout_ CIM_Service* self,
|
|
_In_ MI_Uint16 x)
|
|
{
|
|
((MI_Uint16Field*)&self->PrimaryStatus)->value = x;
|
|
((MI_Uint16Field*)&self->PrimaryStatus)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_PrimaryStatus(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
memset((void*)&self->PrimaryStatus, 0, sizeof(self->PrimaryStatus));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_EnabledState(
|
|
_Inout_ CIM_Service* self,
|
|
_In_ MI_Uint16 x)
|
|
{
|
|
((MI_Uint16Field*)&self->EnabledState)->value = x;
|
|
((MI_Uint16Field*)&self->EnabledState)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_EnabledState(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
memset((void*)&self->EnabledState, 0, sizeof(self->EnabledState));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_OtherEnabledState(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
15,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_OtherEnabledState(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
15,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_OtherEnabledState(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
15);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_RequestedState(
|
|
_Inout_ CIM_Service* self,
|
|
_In_ MI_Uint16 x)
|
|
{
|
|
((MI_Uint16Field*)&self->RequestedState)->value = x;
|
|
((MI_Uint16Field*)&self->RequestedState)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_RequestedState(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
memset((void*)&self->RequestedState, 0, sizeof(self->RequestedState));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_EnabledDefault(
|
|
_Inout_ CIM_Service* self,
|
|
_In_ MI_Uint16 x)
|
|
{
|
|
((MI_Uint16Field*)&self->EnabledDefault)->value = x;
|
|
((MI_Uint16Field*)&self->EnabledDefault)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_EnabledDefault(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
memset((void*)&self->EnabledDefault, 0, sizeof(self->EnabledDefault));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_TimeOfLastStateChange(
|
|
_Inout_ CIM_Service* self,
|
|
_In_ MI_Datetime x)
|
|
{
|
|
((MI_DatetimeField*)&self->TimeOfLastStateChange)->value = x;
|
|
((MI_DatetimeField*)&self->TimeOfLastStateChange)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_TimeOfLastStateChange(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
memset((void*)&self->TimeOfLastStateChange, 0, sizeof(self->TimeOfLastStateChange));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_AvailableRequestedStates(
|
|
_Inout_ CIM_Service* self,
|
|
_In_reads_opt_(size) const MI_Uint16* data,
|
|
_In_ MI_Uint32 size)
|
|
{
|
|
MI_Array arr;
|
|
arr.data = (void*)data;
|
|
arr.size = size;
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
19,
|
|
(MI_Value*)&arr,
|
|
MI_UINT16A,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_AvailableRequestedStates(
|
|
_Inout_ CIM_Service* self,
|
|
_In_reads_opt_(size) const MI_Uint16* data,
|
|
_In_ MI_Uint32 size)
|
|
{
|
|
MI_Array arr;
|
|
arr.data = (void*)data;
|
|
arr.size = size;
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
19,
|
|
(MI_Value*)&arr,
|
|
MI_UINT16A,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_AvailableRequestedStates(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
19);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_TransitioningToState(
|
|
_Inout_ CIM_Service* self,
|
|
_In_ MI_Uint16 x)
|
|
{
|
|
((MI_Uint16Field*)&self->TransitioningToState)->value = x;
|
|
((MI_Uint16Field*)&self->TransitioningToState)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_TransitioningToState(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
memset((void*)&self->TransitioningToState, 0, sizeof(self->TransitioningToState));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_SystemCreationClassName(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
21,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_SystemCreationClassName(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
21,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_SystemCreationClassName(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
21);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_SystemName(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
22,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_SystemName(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
22,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_SystemName(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
22);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_CreationClassName(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
23,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_CreationClassName(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
23,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_CreationClassName(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
23);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_PrimaryOwnerName(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
24,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_PrimaryOwnerName(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
24,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_PrimaryOwnerName(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
24);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_PrimaryOwnerContact(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
25,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_PrimaryOwnerContact(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
25,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_PrimaryOwnerContact(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
25);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_StartMode(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
26,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_SetPtr_StartMode(
|
|
_Inout_ CIM_Service* self,
|
|
_In_z_ const MI_Char* str)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
26,
|
|
(MI_Value*)&str,
|
|
MI_STRING,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_StartMode(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
26);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Set_Started(
|
|
_Inout_ CIM_Service* self,
|
|
_In_ MI_Boolean x)
|
|
{
|
|
((MI_BooleanField*)&self->Started)->value = x;
|
|
((MI_BooleanField*)&self->Started)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_Clear_Started(
|
|
_Inout_ CIM_Service* self)
|
|
{
|
|
memset((void*)&self->Started, 0, sizeof(self->Started));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
/*
|
|
**==============================================================================
|
|
**
|
|
** CIM_Service.RequestStateChange()
|
|
**
|
|
**==============================================================================
|
|
*/
|
|
|
|
typedef struct _CIM_Service_RequestStateChange
|
|
{
|
|
MI_Instance __instance;
|
|
/*OUT*/ MI_ConstUint32Field MIReturn;
|
|
/*IN*/ MI_ConstUint16Field RequestedState;
|
|
/*OUT*/ CIM_ConcreteJob_ConstRef Job;
|
|
/*IN*/ MI_ConstDatetimeField TimeoutPeriod;
|
|
}
|
|
CIM_Service_RequestStateChange;
|
|
|
|
MI_EXTERN_C MI_CONST MI_MethodDecl CIM_Service_RequestStateChange_rtti;
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_RequestStateChange_Construct(
|
|
_Out_ CIM_Service_RequestStateChange* self,
|
|
_In_ MI_Context* context)
|
|
{
|
|
return MI_Context_ConstructParameters(context, &CIM_Service_RequestStateChange_rtti,
|
|
(MI_Instance*)&self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_RequestStateChange_Clone(
|
|
_In_ const CIM_Service_RequestStateChange* self,
|
|
_Outptr_ CIM_Service_RequestStateChange** newInstance)
|
|
{
|
|
return MI_Instance_Clone(
|
|
&self->__instance, (MI_Instance**)newInstance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_RequestStateChange_Destruct(
|
|
_Inout_ CIM_Service_RequestStateChange* self)
|
|
{
|
|
return MI_Instance_Destruct(&self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_RequestStateChange_Delete(
|
|
_Inout_ CIM_Service_RequestStateChange* self)
|
|
{
|
|
return MI_Instance_Delete(&self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_RequestStateChange_Post(
|
|
_In_ const CIM_Service_RequestStateChange* self,
|
|
_In_ MI_Context* context)
|
|
{
|
|
return MI_Context_PostInstance(context, &self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_RequestStateChange_Set_MIReturn(
|
|
_Inout_ CIM_Service_RequestStateChange* self,
|
|
_In_ MI_Uint32 x)
|
|
{
|
|
((MI_Uint32Field*)&self->MIReturn)->value = x;
|
|
((MI_Uint32Field*)&self->MIReturn)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_RequestStateChange_Clear_MIReturn(
|
|
_Inout_ CIM_Service_RequestStateChange* self)
|
|
{
|
|
memset((void*)&self->MIReturn, 0, sizeof(self->MIReturn));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_RequestStateChange_Set_RequestedState(
|
|
_Inout_ CIM_Service_RequestStateChange* self,
|
|
_In_ MI_Uint16 x)
|
|
{
|
|
((MI_Uint16Field*)&self->RequestedState)->value = x;
|
|
((MI_Uint16Field*)&self->RequestedState)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_RequestStateChange_Clear_RequestedState(
|
|
_Inout_ CIM_Service_RequestStateChange* self)
|
|
{
|
|
memset((void*)&self->RequestedState, 0, sizeof(self->RequestedState));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_RequestStateChange_Set_Job(
|
|
_Inout_ CIM_Service_RequestStateChange* self,
|
|
_In_ const CIM_ConcreteJob* x)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
2,
|
|
(MI_Value*)&x,
|
|
MI_REFERENCE,
|
|
0);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_RequestStateChange_SetPtr_Job(
|
|
_Inout_ CIM_Service_RequestStateChange* self,
|
|
_In_ const CIM_ConcreteJob* x)
|
|
{
|
|
return self->__instance.ft->SetElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
2,
|
|
(MI_Value*)&x,
|
|
MI_REFERENCE,
|
|
MI_FLAG_BORROW);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_RequestStateChange_Clear_Job(
|
|
_Inout_ CIM_Service_RequestStateChange* self)
|
|
{
|
|
return self->__instance.ft->ClearElementAt(
|
|
(MI_Instance*)&self->__instance,
|
|
2);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_RequestStateChange_Set_TimeoutPeriod(
|
|
_Inout_ CIM_Service_RequestStateChange* self,
|
|
_In_ MI_Datetime x)
|
|
{
|
|
((MI_DatetimeField*)&self->TimeoutPeriod)->value = x;
|
|
((MI_DatetimeField*)&self->TimeoutPeriod)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_RequestStateChange_Clear_TimeoutPeriod(
|
|
_Inout_ CIM_Service_RequestStateChange* self)
|
|
{
|
|
memset((void*)&self->TimeoutPeriod, 0, sizeof(self->TimeoutPeriod));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
/*
|
|
**==============================================================================
|
|
**
|
|
** CIM_Service.StartService()
|
|
**
|
|
**==============================================================================
|
|
*/
|
|
|
|
typedef struct _CIM_Service_StartService
|
|
{
|
|
MI_Instance __instance;
|
|
/*OUT*/ MI_ConstUint32Field MIReturn;
|
|
}
|
|
CIM_Service_StartService;
|
|
|
|
MI_EXTERN_C MI_CONST MI_MethodDecl CIM_Service_StartService_rtti;
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_StartService_Construct(
|
|
_Out_ CIM_Service_StartService* self,
|
|
_In_ MI_Context* context)
|
|
{
|
|
return MI_Context_ConstructParameters(context, &CIM_Service_StartService_rtti,
|
|
(MI_Instance*)&self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_StartService_Clone(
|
|
_In_ const CIM_Service_StartService* self,
|
|
_Outptr_ CIM_Service_StartService** newInstance)
|
|
{
|
|
return MI_Instance_Clone(
|
|
&self->__instance, (MI_Instance**)newInstance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_StartService_Destruct(
|
|
_Inout_ CIM_Service_StartService* self)
|
|
{
|
|
return MI_Instance_Destruct(&self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_StartService_Delete(
|
|
_Inout_ CIM_Service_StartService* self)
|
|
{
|
|
return MI_Instance_Delete(&self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_StartService_Post(
|
|
_In_ const CIM_Service_StartService* self,
|
|
_In_ MI_Context* context)
|
|
{
|
|
return MI_Context_PostInstance(context, &self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_StartService_Set_MIReturn(
|
|
_Inout_ CIM_Service_StartService* self,
|
|
_In_ MI_Uint32 x)
|
|
{
|
|
((MI_Uint32Field*)&self->MIReturn)->value = x;
|
|
((MI_Uint32Field*)&self->MIReturn)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_StartService_Clear_MIReturn(
|
|
_Inout_ CIM_Service_StartService* self)
|
|
{
|
|
memset((void*)&self->MIReturn, 0, sizeof(self->MIReturn));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
/*
|
|
**==============================================================================
|
|
**
|
|
** CIM_Service.StopService()
|
|
**
|
|
**==============================================================================
|
|
*/
|
|
|
|
typedef struct _CIM_Service_StopService
|
|
{
|
|
MI_Instance __instance;
|
|
/*OUT*/ MI_ConstUint32Field MIReturn;
|
|
}
|
|
CIM_Service_StopService;
|
|
|
|
MI_EXTERN_C MI_CONST MI_MethodDecl CIM_Service_StopService_rtti;
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_StopService_Construct(
|
|
_Out_ CIM_Service_StopService* self,
|
|
_In_ MI_Context* context)
|
|
{
|
|
return MI_Context_ConstructParameters(context, &CIM_Service_StopService_rtti,
|
|
(MI_Instance*)&self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_StopService_Clone(
|
|
_In_ const CIM_Service_StopService* self,
|
|
_Outptr_ CIM_Service_StopService** newInstance)
|
|
{
|
|
return MI_Instance_Clone(
|
|
&self->__instance, (MI_Instance**)newInstance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_StopService_Destruct(
|
|
_Inout_ CIM_Service_StopService* self)
|
|
{
|
|
return MI_Instance_Destruct(&self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_StopService_Delete(
|
|
_Inout_ CIM_Service_StopService* self)
|
|
{
|
|
return MI_Instance_Delete(&self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_StopService_Post(
|
|
_In_ const CIM_Service_StopService* self,
|
|
_In_ MI_Context* context)
|
|
{
|
|
return MI_Context_PostInstance(context, &self->__instance);
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_StopService_Set_MIReturn(
|
|
_Inout_ CIM_Service_StopService* self,
|
|
_In_ MI_Uint32 x)
|
|
{
|
|
((MI_Uint32Field*)&self->MIReturn)->value = x;
|
|
((MI_Uint32Field*)&self->MIReturn)->exists = 1;
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
MI_INLINE MI_Result MI_CALL CIM_Service_StopService_Clear_MIReturn(
|
|
_Inout_ CIM_Service_StopService* self)
|
|
{
|
|
memset((void*)&self->MIReturn, 0, sizeof(self->MIReturn));
|
|
return MI_RESULT_OK;
|
|
}
|
|
|
|
|
|
#endif /* _CIM_Service_h */
|