FMOD_Channel_GetLoopPoints() 개인적인 메소드

private FMOD_Channel_GetLoopPoints ( IntPtr channel, uint &loopstart, TIMEUNIT loopstarttype, uint &loopend, TIMEUNIT loopendtype ) : RESULT
channel System.IntPtr
loopstart uint
loopstarttype TIMEUNIT
loopend uint
loopendtype TIMEUNIT
리턴 RESULT
예제 #1
0
 public RESULT getLoopPoints(ref uint loopstart, TIMEUNIT loopstarttype, ref uint loopend, TIMEUNIT loopendtype)
 {
     return(Channel.FMOD_Channel_GetLoopPoints(channelraw, ref loopstart, loopstarttype, ref loopend, loopendtype));
 }