标签: c++
为C ++ API创建了C-Interface。 为C ++的API对象定义了一些变量,如:
typedef struct object* object;
使用其他方法
typedef void* object;
我的主管建议typedef struct object* object这很好。但我不明白为什么这是更好的设计。 哪个好设计,为什么?
typedef struct object* object
提前致谢