org.jouvieje.fmoddesigner.structures
Class FMOD_MUSIC_INFO

java.lang.Object
  extended byorg.jouvieje.fmodex.utils.Pointer
      extended byorg.jouvieje.fmoddesigner.structures.FMOD_MUSIC_INFO

public class FMOD_MUSIC_INFO
extends Pointer


Constructor Summary
FMOD_MUSIC_INFO()
          Create an object that holds a null FMOD_MUSIC_INFO.
 
Method Summary
static FMOD_MUSIC_INFO allocate()
          Allocate a new FMOD_MUSIC_INFO.
static FMOD_MUSIC_INFO asFMOD_MUSIC_INFO(Pointer pointer)
          Create a view of the Pointer object as a FMOD_MUSIC_INFO object.
 boolean getStarving()
          [out] True if any streams in the music system are starving.
 void release()
           
 
Methods inherited from class org.jouvieje.fmodex.utils.Pointer
asByteBuffer, asDouble, asFloat, asInt, asLong, asPointer, asString, asString, equals, isNull, shareMemory
 
Methods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FMOD_MUSIC_INFO

public FMOD_MUSIC_INFO()
Create an object that holds a null FMOD_MUSIC_INFO.
The call isNull() on the object created will returns true.
  FMOD_MUSIC_INFO obj = new FMOD_MUSIC_INFO();
  (obj == null) <=> false
  obj.isNull() <=> true
 
To creates a new FMOD_MUSIC_INFO, use the static "constructor" :
  FMOD_MUSIC_INFO obj = FMOD_MUSIC_INFO.allocate();

See Also:
allocate()
Method Detail

asFMOD_MUSIC_INFO

public static FMOD_MUSIC_INFO asFMOD_MUSIC_INFO(Pointer pointer)
Create a view of the Pointer object as a FMOD_MUSIC_INFO object.
This view is valid only if the memory holded by the Pointer holds a FMOD_MUSIC_INFO object.


allocate

public static FMOD_MUSIC_INFO allocate()
Allocate a new FMOD_MUSIC_INFO.
The call isNull() on the object created will return false.
  FMOD_MUSIC_INFO obj = FMOD_MUSIC_INFO.allocate();
  (obj == null) <=> obj.isNull() <=> false
 


release

public void release()

getStarving

public boolean getStarving()
[out] True if any streams in the music system are starving.



NativeFmodEx Project - © Copyright 2005-2010 - Jérôme Jouvie (Jouvieje)
NativeFmodEx is an Open Source Project under GNU LGPL License
My sites : http://jerome.jouvie.free.fr/

(Documentation Copyright © Firelight Technologies - FMOD Ex - http://www.fmod.org)