Firelight Technologies FMOD Studio API

FMOD_TAG

Structure describing a piece of tag data.

Structure

typedef struct {
  FMOD_TAGTYPE type;
  FMOD_TAGDATATYPE datatype;
  char *name;
  void *data;
  unsigned int datalen;
  FMOD_BOOL updated;
} FMOD_TAG;

Members

type

[r] The type of this tag.

datatype

[r] The type of data that this tag contains

name

[r] The name of this tag i.e. "TITLE", "ARTIST" etc.

data

[r] Pointer to the tag data - its format is determined by the datatype member

datalen

[r] Length of the data contained in this tag

updated

[r] True if this tag has been updated since last being accessed with Sound::getTag

Remarks

Members marked with [r] mean the variable is modified by FMOD and is for reading purposes only. Do not change this value.
Members marked with [w] mean the variable can be written to. The user can set the value.

See Also




Version 1.03.06 Built on Apr 17, 2014