Revert "C++11 Building - Use new style struct field inititializing" (this code
change breaks gcc on several platforms).
This reverts commit bf153e58a5
.
This commit is contained in:
parent
f842e8af23
commit
1b97f147eb
@ -56,15 +56,15 @@ probe_generic_midi_protocol (ControlProtocolDescriptor* /*descriptor*/)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static ControlProtocolDescriptor generic_midi_descriptor = {
|
static ControlProtocolDescriptor generic_midi_descriptor = {
|
||||||
.name = "Generic MIDI",
|
name : "Generic MIDI",
|
||||||
.id = "uri://ardour.org/surfaces/generic_midi:0",
|
id : "uri://ardour.org/surfaces/generic_midi:0",
|
||||||
.ptr = 0,
|
ptr : 0,
|
||||||
.module = 0,
|
module : 0,
|
||||||
.mandatory = 0,
|
mandatory : 0,
|
||||||
.supports_feedback = true,
|
supports_feedback : true,
|
||||||
.probe = probe_generic_midi_protocol,
|
probe : probe_generic_midi_protocol,
|
||||||
.initialize = new_generic_midi_protocol,
|
initialize : new_generic_midi_protocol,
|
||||||
.destroy = delete_generic_midi_protocol
|
destroy : delete_generic_midi_protocol
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user