本文整理汇总了C#中EVRSettingsError类的典型用法代码示例。如果您正苦于以下问题:C# EVRSettingsError类的具体用法?C# EVRSettingsError怎么用?C# EVRSettingsError使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
EVRSettingsError类属于命名空间,在下文中一共展示了EVRSettingsError类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RemoveSection
public void RemoveSection(string pchSection, ref EVRSettingsError peError)
{
this.FnTable.RemoveSection(pchSection, ref peError);
}
示例2: GetFloat
public abstract float GetFloat(string pchSection,string pchSettingsKey,float flDefaultValue,ref EVRSettingsError peError);
示例3: GetString
public abstract void GetString(string pchSection,string pchSettingsKey,string pchValue,uint unValueLen,string pchDefaultValue,ref EVRSettingsError peError);
示例4: GetBool
public abstract bool GetBool(string pchSection,string pchSettingsKey,bool bDefaultValue,ref EVRSettingsError peError);
示例5: GetInt32
public abstract int GetInt32(string pchSection,string pchSettingsKey,int nDefaultValue,ref EVRSettingsError peError);
示例6: VR_IVRSettings_GetString
internal static extern void VR_IVRSettings_GetString(IntPtr instancePtr, string pchSection, string pchSettingsKey, string pchValue, uint unValueLen, string pchDefaultValue, ref EVRSettingsError peError);
示例7: GetSettingsErrorNameFromEnum
public abstract string GetSettingsErrorNameFromEnum(EVRSettingsError eError);
示例8: Sync
public override void Sync(ref EVRSettingsError peError)
{
CheckIfUsable();
VRNativeEntrypoints.VR_IVRSettings_Sync(m_pVRSettings,ref peError);
}
示例9: SetString
public void SetString(string pchSection, string pchSettingsKey, string pchValue, ref EVRSettingsError peError)
{
this.FnTable.SetString(pchSection, pchSettingsKey, pchValue, ref peError);
}
示例10: Sync
public bool Sync(bool bForce, ref EVRSettingsError peError)
{
return this.FnTable.Sync(bForce, ref peError);
}
示例11: SetInt32
public void SetInt32(string pchSection, string pchSettingsKey, int nValue, ref EVRSettingsError peError)
{
this.FnTable.SetInt32(pchSection, pchSettingsKey, nValue, ref peError);
}
示例12: SetFloat
public void SetFloat(string pchSection, string pchSettingsKey, float flValue, ref EVRSettingsError peError)
{
this.FnTable.SetFloat(pchSection, pchSettingsKey, flValue, ref peError);
}
示例13: SetBool
public void SetBool(string pchSection, string pchSettingsKey, bool bValue, ref EVRSettingsError peError)
{
this.FnTable.SetBool(pchSection, pchSettingsKey, bValue, ref peError);
}
示例14: VR_IVRSettings_GetInt32
internal static extern int VR_IVRSettings_GetInt32(IntPtr instancePtr, string pchSection, string pchSettingsKey, int nDefaultValue, ref EVRSettingsError peError);
示例15: VR_IVRSettings_GetFloat
internal static extern float VR_IVRSettings_GetFloat(IntPtr instancePtr, string pchSection, string pchSettingsKey, float flDefaultValue, ref EVRSettingsError peError);