Changes needed for building surfaces/osc (control surface protocol) with MSVC

(for testing on the non-Windows platforms)
This commit is contained in:
John Emmas 2014-07-22 22:19:46 +01:00 committed by Paul Davis
parent 84f4ad912a
commit db3e315513
2 changed files with 15 additions and 17 deletions

View file

@ -46,15 +46,15 @@ probe_osc_protocol (ControlProtocolDescriptor* /*descriptor*/)
}
static ControlProtocolDescriptor osc_descriptor = {
name : "Open Sound Control (OSC)",
id : "uri://ardour.org/surfaces/osc:0",
ptr : 0,
module : 0,
mandatory : 0,
supports_feedback : true,
probe : probe_osc_protocol,
initialize : new_osc_protocol,
destroy : delete_osc_protocol
/*name : */ "Open Sound Control (OSC)",
/*id : */ "uri://ardour.org/surfaces/osc:0",
/*ptr : */ 0,
/*module : */ 0,
/*mandatory : */ 0,
/*supports_feedback : */ true,
/*probe : */ probe_osc_protocol,
/*initialize : */ new_osc_protocol,
/*destroy : */ delete_osc_protocol
};
extern "C" ARDOURSURFACE_API ControlProtocolDescriptor* protocol_descriptor () { return &osc_descriptor; }