在我的程序中,我使用的是共享库的方法。
我的程序是为数十万种不同的设备(Android)编译的,我无法为每个目标系统提供特定的二进制文件。
目标设备上的共享库的方法可能有两个不同的签名:
系统A
int (*open_output_stream)(
struct audio_hw_device *dev, // equal on all systems
audio_io_handle_t handle, // unimportant
audio_devices_t devices, // unimportant
audio_output_flags_t flags, // unimportant
struct audio_config *config, // unimportant
struct audio_stream_out **stream_out // equal on all systems
);
系统B
int (*open_output_stream)(
struct audio_hw_device *dev, // equal on all systems
uint32_t devices, // unimportant
int *format, // unimportant
uint32_t *channels, // unimportant
uint32_t *sample_rate, // unimportant
struct audio_stream_out **out // equal on all systems
);
在我的代码中,我需要使用第一个参数( struct audio_hw_device )和最后一个参数( struct audio_stream_out )调用该方法,以获得我需要的结果。< / p>
其他4个参数对我来说并不重要,我会将它们替换为0或NULL。
谁可以告诉我,我是否可以调用这些方法,如
audio_hw_device_t * outHwDev
int res = open_output_stream)(
outHwDev, // equal on all systems
NULL or 0 ?, // unimportant
NULL or 0 ?, // unimportant
NULL or 0 ?, // unimportant
NULL or 0 ?, // unimportant
&outStream // equal on all systems
);
或类似于“try {callFunction}(catch UnknownMethodException){}”可能在C:? :)
没有官方的头文件,我必须自己定义,但这应该在这里。
答案 0 :(得分:0)
有没有办法检测您正在运行的系统?如果是这样,你可以在自己的代码中提供一个包装器:
int systema_open_output_stream(
struct audio_hw_device *dev,
struct audio_stream_out **out
)
{
audio_io_handle_t handle; // unimportant
audio_devices_t devices; // unimportant
audio_output_flags_t flags; // unimportant
struct audio_config *config; // unimportant
return open_output_stream_a(dev, handle, devices, flags, config, out)
}
int systemb_output_stream(struct audio_hw_device *dev,
struct audio_stream_out **out
)
{
uint32_t devices; // unimportant
int *format; // unimportant
uint32_t *channels; // unimportant
uint32_t *sample_rate; // unimportant
return open_output_stream_b(dev, devices, format, channels, sample_rate, out);
}
if (is_system_a())
out_func = &systema_output_stream;
else
out_func = &systemb_output_stream;
int res = out_func(dev, out);