FMOD.Studio.EventInstance.FMOD_Studio_EventInstance_GetPlaybackState C# (CSharp) Method

FMOD_Studio_EventInstance_GetPlaybackState() private method

private FMOD_Studio_EventInstance_GetPlaybackState ( IntPtr _event, PLAYBACK_STATE &state ) : RESULT
_event System.IntPtr
state PLAYBACK_STATE
return RESULT
        private static extern RESULT FMOD_Studio_EventInstance_GetPlaybackState     (IntPtr _event, out PLAYBACK_STATE state);
        [DllImport(STUDIO_VERSION.dll)]

Usage Example

Beispiel #1
0
 public RESULT getPlaybackState(out PLAYBACK_STATE state)
 {
     return(EventInstance.FMOD_Studio_EventInstance_GetPlaybackState(this.rawPtr, out state));
 }
EventInstance