本文整理汇总了C#中FMOD.MEMORY_USAGE_DETAILS类的典型用法代码示例。如果您正苦于以下问题:C# MEMORY_USAGE_DETAILS类的具体用法?C# MEMORY_USAGE_DETAILS怎么用?C# MEMORY_USAGE_DETAILS使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
MEMORY_USAGE_DETAILS类属于FMOD命名空间,在下文中一共展示了MEMORY_USAGE_DETAILS类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FMOD_System_GetMemoryInfo
private static extern RESULT FMOD_System_GetMemoryInfo(IntPtr system, uint memorybits, uint event_memorybits, ref uint memoryused, ref MEMORY_USAGE_DETAILS memoryused_details);
示例2: FMOD_SoundGroup_GetMemoryInfo
private static extern RESULT FMOD_SoundGroup_GetMemoryInfo(IntPtr soundgroup, uint memorybits, uint event_memorybits, ref uint memoryused, ref MEMORY_USAGE_DETAILS memoryused_details);
示例3: getMemoryInfo
public RESULT getMemoryInfo(uint memorybits, uint event_memorybits, ref uint memoryused, ref MEMORY_USAGE_DETAILS memoryused_details)
{
return FMOD_System_GetMemoryInfo(systemraw, memorybits, event_memorybits, ref memoryused, ref memoryused_details);
}
示例4: FMOD_DSPConnection_GetMemoryInfo
private static extern RESULT FMOD_DSPConnection_GetMemoryInfo(IntPtr dspconnection, uint memorybits, uint event_memorybits, ref uint memoryused, ref MEMORY_USAGE_DETAILS memoryused_details);
示例5: FMOD_MusicPrompt_GetMemoryInfo
private static extern RESULT FMOD_MusicPrompt_GetMemoryInfo(IntPtr musicprompt, uint memorybits, uint event_memorybits, ref uint memoryused, ref MEMORY_USAGE_DETAILS memoryused_details);
示例6: getMemoryInfo
public RESULT getMemoryInfo(uint memorybits, uint event_memorybits, ref uint memoryused, ref MEMORY_USAGE_DETAILS memoryused_details)
{
return FMOD_MusicPrompt_GetMemoryInfo(musicpromptraw, memorybits, event_memorybits, ref memoryused, ref memoryused_details);
}
示例7: FMOD_EventReverb_GetMemoryInfo
private static extern RESULT FMOD_EventReverb_GetMemoryInfo(IntPtr eventreverb, uint memorybits, uint event_memorybits, ref uint memoryused, ref MEMORY_USAGE_DETAILS memoryused_details);