这里我的问题是,我有一个.swift
文件,我有.c
('C'文件)和一些函数。我想从.swift
文件中调用这些函数我该怎么做?
示例:
在我的product.c
文件中,我有此功能
static unsigned short get_vendor_id(IOHIDDeviceRef device)
{
return get_long_property(device, CFSTR(kIOHIDVendorIDKey));
}
现在,我如何在product.c
中导入此viewcontroller.swift
文件以及如何从get_vendor_id method
调用此.switf
以及如何获取返回值?
首先是可能吗?
由于