Sha256: bd65888d057b7f7a5e6a4b00f1517a3fffa73f10a4d8a9cb366852f49d74bf6b

Contents?: true

Size: 702 Bytes

Versions: 5

Compression:

Stored size: 702 Bytes

Contents

module FMOD
  module Core

    ##
    # Strongly-typed values for indicating the data types used in music tags.
    module TagDataType

      ##
      # Raw binary data.
      BINARY = 0

      ##
      # A 32-bit integer
      INT = 1

      ##
      # A 32-bit floating point value
      FLOAT = 2

      ##
      # A string with no specified encoding.
      STRING = 3

      ##
      # A UTF-16 encoded string.
      STRING_UTF16 = 4

      ##
      # A UTF-16 Big-Endian string.
      STRING_UTF16BE = 5

      ##
      # A UTF-8 encoded string.
      STRING_UTF8 = 6

      ##
      # @deprecated Do not use.
      # A CDTOC tag.
      CDTOC = 7

      deprecate_constant :CDTOC
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fmod-0.9.6 lib/fmod/core/tag_data_type.rb
fmod-0.9.5 lib/fmod/core/tag_data_type.rb
fmod-0.9.4 lib/fmod/core/tag_data_type.rb
fmod-0.9.3 lib/fmod/core/tag_data_type.rb
fmod-0.9.2 lib/fmod/core/tag_data_type.rb