本文整理汇总了C#中FreeSWITCH.Native.SWIGTYPE_p_float类的典型用法代码示例。如果您正苦于以下问题:C# SWIGTYPE_p_float类的具体用法?C# SWIGTYPE_p_float怎么用?C# SWIGTYPE_p_float使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SWIGTYPE_p_float类属于FreeSWITCH.Native命名空间,在下文中一共展示了SWIGTYPE_p_float类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: switch_short_to_float
public static int switch_short_to_float(SWIGTYPE_p_short s, SWIGTYPE_p_float f, int len)
{
int ret = freeswitchPINVOKE.switch_short_to_float(SWIGTYPE_p_short.getCPtr(s), SWIGTYPE_p_float.getCPtr(f), len);
return ret;
}
示例2: switch_float_to_short
public static SWIGTYPE_p_switch_size_t switch_float_to_short(SWIGTYPE_p_float f, SWIGTYPE_p_short s, SWIGTYPE_p_switch_size_t len)
{
SWIGTYPE_p_switch_size_t ret = new SWIGTYPE_p_switch_size_t(freeswitchPINVOKE.switch_float_to_short(SWIGTYPE_p_float.getCPtr(f), SWIGTYPE_p_short.getCPtr(s), SWIGTYPE_p_switch_size_t.getCPtr(len)), true);
if (freeswitchPINVOKE.SWIGPendingException.Pending) throw freeswitchPINVOKE.SWIGPendingException.Retrieve();
return ret;
}
示例3: switch_char_to_float
public static int switch_char_to_float(string c, SWIGTYPE_p_float f, int len)
{
int ret = freeswitchPINVOKE.switch_char_to_float(c, SWIGTYPE_p_float.getCPtr(f), len);
return ret;
}
示例4: switch_float_to_char
public static int switch_float_to_char(SWIGTYPE_p_float f, string c, int len)
{
int ret = freeswitchPINVOKE.switch_float_to_char(SWIGTYPE_p_float.getCPtr(f), c, len);
return ret;
}
示例5: getCPtr
internal static HandleRef getCPtr(SWIGTYPE_p_float obj)
{
return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
}