File: Mapper_GENERIC.h

package info (click to toggle)
rosegarden 2.1-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 3,652 kB
  • ctags: 4,273
  • sloc: ansic: 42,081; makefile: 4,042; sh: 1,711; tcl: 320
file content (23 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _MAPPER_GENERIC_H_
#define _MAPPER_GENERIC_H_

typedef struct _MidiInfo
{
    char name[30];  /* no actually as arbitrary as it looks -
                       consistent with the OSS (Hmm, 2.5/3.0?)
                       definition of name length */
} MidiInfo;

typedef struct _DeviceData
{
    MidiInfo Midi;
} DeviceData;

/* some stuff */
typedef struct _DeviceInformation
{
    DeviceType Type;  /* need this one */
    DeviceData Data;
} DeviceInformation;

#endif