PS04DrumKit

PS04DrumKit — Drum kit of a rhythm pattern

Synopsis


#include <PS04-drum-kit.h>


enum        PS04DrumKit;
const GList* ps04_drum_kit_get_drums        (void);
const char* ps04_drum_kit_get_name          (PS04DrumKit kit);

Description

The PS04DrumKit enumeration represents the built-in drum kits of the PS-04 rhythm sequencer. Every PS04Pattern have a drum kit specified.

Details

enum PS04DrumKit

typedef enum
{
  PS04_DRUMKIT_LIVE,
  PS04_DRUMKIT_POWER,
  PS04_DRUMKIT_JAZZ,
  PS04_DRUMKIT_ANALOG,
  PS04_DRUMKIT_GENERIC,
  PS04_DRUMKIT_FUNK,
  PS04_DRUMKIT_SCRATCH,
  PS04_N_DRUMKITS
} PS04DrumKit;


ps04_drum_kit_get_drums ()

const GList* ps04_drum_kit_get_drums        (void);

Returns :

ps04_drum_kit_get_name ()

const char* ps04_drum_kit_get_name          (PS04DrumKit kit);

Gets the displayable name of the drum kit.

kit : The PS04DrumKit.
Returns : a pointer to a static string.