Tao.Sdl SDK Documentation

Sdl.SDL_CDtrack Structure

CD Track Information Structure

For a list of all members of this type, see Sdl.SDL_CDtrack Members.

System.Object
   System.ValueType
      Tao.Sdl.Sdl.SDL_CDtrack

[Visual Basic]
Public Structure Sdl.SDL_CDtrack
[C#]
public struct Sdl.SDL_CDtrack

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Remarks

SDL_CDtrack stores data on each track on a CD, its fields should be pretty self explainatory. It is a member a the Sdl.SDL_CD structure.

Note: Frames can be converted to standard timings. There are CD_FPS frames per second, so SDL_CDtrack.length/CD_FPS=length_in_seconds.

Struct in SDL_cdrom.h

            typedef struct{
            Uint8 id;
            Uint8 type;
            Uint32 length;
            Uint32 offset;
            } SDL_CDtrack;
            

Requirements

Namespace: Tao.Sdl

Assembly: Tao.Sdl (in Tao.Sdl.dll)

See Also

Sdl.SDL_CDtrack Members | Tao.Sdl Namespace | Sdl.SDL_CD