Ejemplo n.º 1
0
 private static extern int zplay_SlideVolume(
     uint objptr,
     TTimeFormat fFormatStart,
     ref TStreamTime pTimeStart,
     int nStartVolumeLeft,
     int nStartVolumeRight,
     TTimeFormat fFormatEnd,
     ref TStreamTime pTimeEnd,
     int nEndVolumeLeft,
     int nEndVolumeRight);
Ejemplo n.º 2
0
 public bool SlideVolume(
     TTimeFormat TimeFormatStart,
     ref TStreamTime TimeStart,
     int StartVolumeLeft,
     int StartVolumeRight,
     TTimeFormat TimeFormatEnd,
     ref TStreamTime TimeEnd,
     int EndVolumeLeft,
     int EndVolumeRight)
 {
     return(ZPlay.zplay_SlideVolume(this.objptr, TimeFormatStart, ref TimeStart, StartVolumeLeft, StartVolumeRight, TimeFormatEnd, ref TimeEnd, EndVolumeLeft, EndVolumeRight) == 1);
 }
Ejemplo n.º 3
0
        public bool PlayLoop(
            TTimeFormat TimeFormatStart,
            ref TStreamTime StartPosition,
            TTimeFormat TimeFormatEnd,
            ref TStreamTime EndPosition,
            uint NumberOfCycles,
            bool ContinuePlaying)
        {
            uint fContinuePlaying = !ContinuePlaying ? 0U : 1U;

            return(ZPlay.zplay_PlayLoop(this.objptr, Convert.ToInt32((int)TimeFormatStart), ref StartPosition, Convert.ToInt32((int)TimeFormatEnd), ref EndPosition, NumberOfCycles, fContinuePlaying) == 1);
        }
Ejemplo n.º 4
0
 private extern static int zplay_SlideVolume(uint objptr, TTimeFormat fFormatStart, ref TStreamTime pTimeStart, int nStartVolumeLeft, int nStartVolumeRight, TTimeFormat fFormatEnd, ref TStreamTime pTimeEnd, int nEndVolumeLeft, int nEndVolumeRight);
Ejemplo n.º 5
0
 private extern static int zplay_Seek(uint objptr, TTimeFormat fFormat, ref TStreamTime pTime, TSeekMethod nMoveMethod);
Ejemplo n.º 6
0
 public bool SlideVolume(TTimeFormat TimeFormatStart, ref TStreamTime TimeStart, int StartVolumeLeft, int StartVolumeRight, TTimeFormat TimeFormatEnd, ref TStreamTime TimeEnd, int EndVolumeLeft, int EndVolumeRight)
 {
     return zplay_SlideVolume(objptr, TimeFormatStart, ref TimeStart, StartVolumeLeft, StartVolumeRight, TimeFormatEnd, ref TimeEnd, EndVolumeLeft, EndVolumeRight) == 1;
 }
Ejemplo n.º 7
0
        public bool PlayLoop(TTimeFormat TimeFormatStart, ref TStreamTime StartPosition, TTimeFormat TimeFormatEnd, ref TStreamTime EndPosition, uint NumberOfCycles, bool ContinuePlaying)
        {
            uint continueplay = 0;
            if (ContinuePlaying)
            {
                continueplay = 1;
            }
            else
            {
                continueplay = 0;
            }

            return zplay_PlayLoop(objptr, System.Convert.ToInt32((int)(TimeFormatStart)), ref StartPosition, System.Convert.ToInt32((int)(TimeFormatEnd)), ref EndPosition, NumberOfCycles, continueplay) == 1;
        }
Ejemplo n.º 8
0
 public bool Seek(TTimeFormat TimeFormat, ref TStreamTime Position, TSeekMethod MoveMethod)
 {
     return zplay_Seek(objptr, TimeFormat, ref Position, MoveMethod) == 1;
 }
Ejemplo n.º 9
0
public bool SlideVolume(TTimeFormat TimeFormatStart, ref TStreamTime TimeStart, int StartVolumeLeft, int StartVolumeRight, TTimeFormat TimeFormatEnd, ref TStreamTime TimeEnd, int EndVolumeLeft, int EndVolumeRight);
Ejemplo n.º 10
0
public bool PlayLoop(TTimeFormat TimeFormatStart, ref TStreamTime StartPosition, TTimeFormat TimeFormatEnd, ref TStreamTime EndPosition, uint NumberOfCycles, bool ContinuePlaying);
Ejemplo n.º 11
0
public bool Seek(TTimeFormat TimeFormat, ref TStreamTime Position, TSeekMethod MoveMethod);
Ejemplo n.º 12
0
 public bool Seek(TTimeFormat TimeFormat, ref TStreamTime Position, TSeekMethod MoveMethod)
 {
     return(ZPlay.zplay_Seek(this.objptr, TimeFormat, ref Position, MoveMethod) == 1);
 }
Ejemplo n.º 13
0
 private static extern int zplay_Seek(
     uint objptr,
     TTimeFormat fFormat,
     ref TStreamTime pTime,
     TSeekMethod nMoveMethod);
Ejemplo n.º 14
0
 public bool SlideVolume(TTimeFormat TimeFormatStart, ref TStreamTime TimeStart, int StartVolumeLeft, int StartVolumeRight, TTimeFormat TimeFormatEnd, ref TStreamTime TimeEnd, int EndVolumeLeft, int EndVolumeRight);
Ejemplo n.º 15
0
 public bool PlayLoop(TTimeFormat TimeFormatStart, ref TStreamTime StartPosition, TTimeFormat TimeFormatEnd, ref TStreamTime EndPosition, uint NumberOfCycles, bool ContinuePlaying);
Ejemplo n.º 16
0
 public bool Seek(TTimeFormat TimeFormat, ref TStreamTime Position, TSeekMethod MoveMethod);